-
Notifications
You must be signed in to change notification settings - Fork 3
Move cleanup of previous jobs into execute function #732
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
1686125
Difference between shutdown(wait=True) and shutdown(wait=False)
jan-janssen ccf6064
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] f1f8a42
Merge remote-tracking branch 'origin/main' into move_cleanup
jan-janssen 27da4b6
Move cleanup of previous jobs into execute function
jan-janssen 9583444
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] 86514c8
Merge branch 'main' into shutdown_case
jan-janssen 04b7c1b
Merge branch 'shutdown_case' into move_cleanup
jan-janssen e42f97d
fix type hints
jan-janssen 67c9292
fix test
jan-janssen d698842
move imports
jan-janssen d6051da
check if the file exists
jan-janssen 37dde1e
fix old tests
jan-janssen 3cf43c5
Update executorlib/task_scheduler/file/queue_spawner.py
jan-janssen be6aba8
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] 121fc9a
extend test
jan-janssen 8fa5246
fix tests
jan-janssen 150f8f0
Merge branch 'main' into move_cleanup
jan-janssen File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💡 Verification agent
🧩 Analysis chain
Verify breaking change impact across the codebase.
The function signature has been significantly changed:
file_name
is now required (was optional)data_dict
is a new required parametercache_directory
parameter position has changedThis is a breaking change that will require updates to all callers of this function.
🏁 Script executed:
Length of output: 1393
Update execute_in_subprocess callers to match the new signature
The recent signature change in
executorlib/task_scheduler/file/subprocess_spawner.py
breaks existing calls. Please update all callers—particularly in your tests—to use the new parameters:config_directory=
→cache_directory=
backend=
argumentexecute_in_subprocess(
and apply the same updates.🤖 Prompt for AI Agents