From 7beb400b476660d42d25dd0ea391d9fd2915dcf7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9ophile=20Diot?= Date: Thu, 5 Jan 2023 10:51:09 +0100 Subject: [PATCH] Fix stop gathering all the logs every time with the auto update --- src/ui/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/main.py b/src/ui/main.py index fee4943d9..d3f465ca7 100755 --- a/src/ui/main.py +++ b/src/ui/main.py @@ -1420,7 +1420,7 @@ def logs_container(container_id): } ) - return jsonify({"logs": logs, "last_update": int(time())}) + return jsonify({"logs": logs, "last_update": int(time() * 1000)}) @app.route("/jobs", methods=["GET"])