Compare commits

..

1 Commits

Author SHA1 Message Date
bot
32e4769366 Update export statistics 2024-12-01 05:15:49 +00:00
3 changed files with 2 additions and 1 deletions

Binary file not shown.

Binary file not shown.

View File

@ -253,7 +253,7 @@ class Zhurnal(web.Application):
time_elapsed = round( time_elapsed = round(
time_previous and time_current - time_previous or 0, 4 time_previous and time_current - time_previous or 0, 4
) )
decoded_line = line.decode("utf-8", "ignore").strip() decoded_line = line.decode("utf-8", "replace").strip()
print(decoded_line) print(decoded_line)
decoded_line = "".join(c for c in decoded_line if c.isprintable()) decoded_line = "".join(c for c in decoded_line if c.isprintable())
for client in app.clients: for client in app.clients:
@ -292,6 +292,7 @@ class Zhurnal(web.Application):
) )
async def start_processes(self, app): async def start_processes(self, app):
print(app)
for x, command in enumerate(self.commands): for x, command in enumerate(self.commands):
self.processes[command] = asyncio.create_task( self.processes[command] = asyncio.create_task(
self.run_process("process-{}".format(x), command) self.run_process("process-{}".format(x), command)