-
Notifications
You must be signed in to change notification settings - Fork 25
add a --wait flag #234
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
Closed
Closed
add a --wait flag #234
Changes from all commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
91bba2d
add a --wait flag
cnolanminich 674e513
add debugging
cnolanminich 8947606
Add optional wait parameter to job launch action
cnolanminich 59375e8
Fix action.yml arguments for utils/run action
cnolanminich 3f3e020
Revert "Fix action.yml arguments for utils/run action"
cnolanminich f8e2e06
Revert "Add optional wait parameter to job launch action"
cnolanminich f6a4feb
Revert "add debugging"
cnolanminich 74c55e5
use release branch
cnolanminich 19e9cbf
update script to accept add-wait-param as rc name
cnolanminich 6f75181
update .gitignore
cnolanminich b7336ca
use add-wait-param package
cnolanminich 79c1d4c
use linux/amd64
cnolanminich 6729339
Update release.py
cnolanminich 17e8161
Fix run ID extraction when using --wait flag
cnolanminich 5da64d1
work with multiple lines in stdout
cnolanminich 5a622bd
Add comprehensive tests for wait parameter functionality
cnolanminich d35369c
Fix regex patterns for run ID extraction to handle test data
cnolanminich 10c08c5
clean up debugging and remove tests
cnolanminich 1a2afc6
Remove generated dagster-cloud.pex file
cnolanminich 15b168b
Create dagster-cloud.pex
cnolanminich 4bf9945
remove references to add-wait-param branch
cnolanminich 173d0ff
fix more references
cnolanminich 3f3b958
add interval flag to github action if wait is enabled
cnolanminich 156ed73
stream output of dagster-cloud job launch
cnolanminich cdc0431
use add-wait-param for rc
cnolanminich f93ac54
update wait behavior
cnolanminich 32186bd
use tee piped output again
cnolanminich e0a8699
change streaming strategy
cnolanminich 99d4382
remove streaming behavior
cnolanminich 412dabc
remove streaming behavior
cnolanminich 61f351b
Update dagster-cloud.pex
cnolanminich 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -9,4 +9,5 @@ src/pex-builder/build | |
| wheels/*whl | ||
|
|
||
| # PyCharm IDE Config files | ||
| .idea/ | ||
| .idea/ | ||
| .env | ||
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
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
Binary file not shown.
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.
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.
There's a potential issue with how the interval flag is being added to the command arguments array. The unquoted
${interval_flag}will undergo word splitting by the shell, which could cause problems if the interval value contains spaces or special characters.Consider either:
Keeping it quoted to preserve it as a single element:
cmd_args+=("${interval_flag}")Or if the intention is to split
--intervaland its value into separate array elements, explicitly handle that:The second approach is likely more robust for command-line argument handling.
Spotted by Diamond
Is this helpful? React 👍 or 👎 to let us know.