Fix stop gathering all the logs every time with the auto update

This commit is contained in:
Théophile Diot 2023-01-05 10:51:09 +01:00
parent ab163ce134
commit 7beb400b47
No known key found for this signature in database
GPG Key ID: E752C80DB72BB014
1 changed files with 1 additions and 1 deletions

View File

@ -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"])