Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jakep-allenai committed Nov 15, 2024
1 parent 748b095 commit 2e1d0b6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pdelfin/beakerpipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -525,7 +525,7 @@ def _kill_proc():

# Shared variables between tasks
last_running_req, last_queue_req = 0, 0
can_release_automatically = True
can_release_automatically = False
last_semaphore_release = time.time()

async def process_line(line):
Expand Down Expand Up @@ -797,7 +797,7 @@ async def main():
logger.info("Work done")

if __name__ == "__main__":
asyncio.run(main(), debug=True)
asyncio.run(main())

# TODO
# Possible future addon, in beaker, discover other nodes on this same job
Expand Down
2 changes: 1 addition & 1 deletion pdelfin/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
_MINOR = "1"
# On main and in a nightly release the patch should be one ahead of the last
# released build.
_PATCH = "20"
_PATCH = "21"
# This is mainly for nightly builds which have the suffix ".dev$DATE". See
# https://semver.org/#is-v123-a-semantic-version for the semantics.
_SUFFIX = ""
Expand Down

0 comments on commit 2e1d0b6

Please sign in to comment.