Skip to content

Commit

Permalink
update etag to be none
Browse files Browse the repository at this point in the history
  • Loading branch information
alexboden committed Dec 3, 2024
1 parent 66ba320 commit 33ad132
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def poll_github_actions_and_allocate_runners(url, token, sleep_time=5):
etag = None
while True:
try:
data, etag = get_gh_api(url, token, etag)
data, etag = get_gh_api(url, token, None)
if data:
allocate_runners_for_jobs(data, token)
global POLLED_WITHOUT_ALLOCATING
Expand Down

0 comments on commit 33ad132

Please sign in to comment.