Skip to content

Commit

Permalink
fix workername formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Mic92 authored and mergify[bot] committed Dec 27, 2023
1 parent 22b4caf commit 645c7fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buildbot_nix/worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def setup_worker(
basedir.mkdir(parents=True, exist_ok=True, mode=0o700)

hostname = socket.gethostname()
workername = f"{hostname}-{id:03}"
workername = f"{hostname}-{builder_id:03}"
keepalive = 600
umask = None
maxdelay = 300
Expand Down

0 comments on commit 645c7fd

Please sign in to comment.