From 71075437d3b066c89aba0342d33286c1b4aa2eee Mon Sep 17 00:00:00 2001 From: fly Date: Tue, 26 Jan 2021 21:30:38 +0000 Subject: [PATCH] Fix common function use Signed-off-by: fly --- flag-rebuild.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flag-rebuild.py b/flag-rebuild.py index 8fa9cb6..c74b3a7 100755 --- a/flag-rebuild.py +++ b/flag-rebuild.py @@ -75,10 +75,10 @@ except IOError: tiles = set(tiles) for tile in tiles: - status = get_status(tile) + status = get_status(tile, host, port) if status == "done" or status == "packaged": if verbose: print("Flagging " + tile) - send_status(tile, "rebuild") + send_status(tile, "rebuild", host, port) elif verbose: print("Skipping " + tile + ". Not yet build")