From 8f171b81a18c7f847a218c4af5ff9451692f9caf Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Tue, 12 Mar 2024 08:30:06 -0700 Subject: [PATCH] Include task ID in DONE message for OSBS phase Again, composetracker expects the message in this format. Signed-off-by: Adam Williamson (cherry picked from commit b6cfd8c5d4dc94c49a8e69ba87775bdb7853c6ec) --- pungi/phases/osbs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pungi/phases/osbs.py b/pungi/phases/osbs.py index c6a337b0..9463ffae 100644 --- a/pungi/phases/osbs.py +++ b/pungi/phases/osbs.py @@ -154,7 +154,7 @@ class OSBSThread(WorkerThread): reuse_file, ) - self.pool.log_info("[DONE ] %s" % msg) + self.pool.log_info("[DONE ] %s (task id: %s)" % (msg, task_id)) def _get_image_conf(self, compose, config): """Get image-build.conf from git repo.