From 2e1d0b6a9019a813ca387bf9c430f5c6067ee035 Mon Sep 17 00:00:00 2001 From: Jake Poznanski Date: Fri, 15 Nov 2024 13:21:55 -0800 Subject: [PATCH] Fix --- pdelfin/beakerpipeline.py | 4 ++-- pdelfin/version.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pdelfin/beakerpipeline.py b/pdelfin/beakerpipeline.py index b17cf8f..f3ad5a5 100644 --- a/pdelfin/beakerpipeline.py +++ b/pdelfin/beakerpipeline.py @@ -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): @@ -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 diff --git a/pdelfin/version.py b/pdelfin/version.py index 8edd08e..85caee7 100644 --- a/pdelfin/version.py +++ b/pdelfin/version.py @@ -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 = ""