aboutsummaryrefslogtreecommitdiff
path: root/src/cli/nomad_allocs.py
diff options
context:
space:
mode:
authorFranck Cuny <fcuny@roblox.com>2024-05-06 16:35:59 -0700
committerFranck Cuny <fcuny@roblox.com>2024-05-06 16:35:59 -0700
commit7e25a2499a5d62c8efc17f0540097a9608bb083c (patch)
treed93c5b133da6493c1d3d7df28e837a5e757b85b4 /src/cli/nomad_allocs.py
parentmove ghabilling to python (diff)
downloadinfra-7e25a2499a5d62c8efc17f0540097a9608bb083c.tar.gz
lint and fmt
Diffstat (limited to '')
-rwxr-xr-xsrc/cli/nomad_allocs.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/cli/nomad_allocs.py b/src/cli/nomad_allocs.py
index f2369bb..868fea9 100755
--- a/src/cli/nomad_allocs.py
+++ b/src/cli/nomad_allocs.py
@@ -28,13 +28,9 @@ def cli(job, dc, token):
for task in resp.json():
task_name = list(task["TaskStates"].keys())[0]
if task["TaskStates"][task_name]["State"] == "running":
- running_tasks.append(
- f"https://{dc}-nomad.simulprod.com/ui/allocations/{task['ID']}/{task_name}/logs"
- )
+ running_tasks.append(f"https://{dc}-nomad.simulprod.com/ui/allocations/{task['ID']}/{task_name}/logs")
else:
- terminated_tasks.append(
- f"https://{dc}-nomad.simulprod.com/ui/allocations/{task['ID']}/{task_name}/logs"
- )
+ terminated_tasks.append(f"https://{dc}-nomad.simulprod.com/ui/allocations/{task['ID']}/{task_name}/logs")
if len(running_tasks) > 0:
print("running tasks")