Commit 5b2d2342 authored by Barnabas Busa's avatar Barnabas Busa Committed by GitHub

fix: set default for label-maker (#797)

parent 2110a608
...@@ -71,7 +71,9 @@ def zfill_custom(value, width): ...@@ -71,7 +71,9 @@ def zfill_custom(value, width):
return ("0" * (width - len(str(value)))) + str(value) return ("0" * (width - len(str(value)))) + str(value)
def label_maker(client, client_type, image, connected_client, extra_labels, supernode): def label_maker(
client, client_type, image, connected_client, extra_labels, supernode=False
):
# Extract sha256 hash if present # Extract sha256 hash if present
sha256 = "" sha256 = ""
if "@sha256:" in image: if "@sha256:" in image:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment