We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77405dc commit 70a6810Copy full SHA for 70a6810
src/aleph/vm/controllers/qemu/instance.py
@@ -2,7 +2,6 @@
2
import json
3
import logging
4
import shutil
5
-from asyncio import Task
6
from asyncio.subprocess import Process
7
from pathlib import Path
8
from typing import Generic, TypeVar
@@ -261,12 +260,8 @@ async def start_guest_api(self):
261
260
async def stop_guest_api(self):
262
pass
263
264
- print_task: Task | None = None
265
266
async def teardown(self):
267
- if self.print_task:
268
- self.print_task.cancel()
269
-
270
if self.enable_networking:
271
teardown_nftables_for_vm(self.vm_id)
272
if self.tap_interface:
0 commit comments