File tree Expand file tree Collapse file tree 1 file changed +0
-7
lines changed
src/aleph/vm/hypervisors/firecracker Expand file tree Collapse file tree 1 file changed +0
-7
lines changed Original file line number Diff line number Diff line change 6
6
import shutil
7
7
import string
8
8
import traceback
9
- from asyncio import Task
10
9
from asyncio .base_events import Server
11
10
from dataclasses import dataclass
12
11
from os import getuid
@@ -84,8 +83,6 @@ class MicroVM:
84
83
firecracker_bin_path : Path
85
84
jailer_bin_path : Path | None
86
85
proc : asyncio .subprocess .Process | None = None
87
- stdout_task : Task | None = None
88
- stderr_task : Task | None = None
89
86
config_file_path : Path | None = None
90
87
drives : list [Drive ]
91
88
init_timeout : float
@@ -477,10 +474,6 @@ async def teardown(self):
477
474
await asyncio .sleep (1 )
478
475
await self .stop ()
479
476
480
- if self .stdout_task :
481
- self .stdout_task .cancel ()
482
- if self .stderr_task :
483
- self .stderr_task .cancel ()
484
477
485
478
if (
486
479
self .journal_stdout
You can’t perform that action at this time.
0 commit comments