Skip to content

Commit

Permalink
Fix typo from review
Browse files Browse the repository at this point in the history
  • Loading branch information
olethanh committed Nov 16, 2023
1 parent ab27d24 commit e985d5f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/aleph/vm/hypervisors/firecracker/microvm.py
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ async def print_logs(self):
return
for queue in self.log_queues:
await queue.put(("stdout", line))
print(self, line, line.decode().strip())
print(self, line.decode().strip())

async def print_logs_stderr(self):
while not self.proc:
Expand All @@ -358,7 +358,7 @@ async def print_logs_stderr(self):
return
for queue in self.log_queues:
await queue.put(("stderr", line))
print(self, "stderr", line.decode().strip(), file=sys.stderr)
print(self, line.decode().strip(), file=sys.stderr)

def start_printing_logs(self) -> tuple[Task, Task]:
loop = asyncio.get_running_loop()
Expand Down

0 comments on commit e985d5f

Please sign in to comment.