-
Notifications
You must be signed in to change notification settings - Fork 4.4k
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
Clean up subprocess handling and make shell use optional #3509
Merged
Merged
Changes from 4 commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
4248a34
Clean up handling of subprocesses and make using a shell optional
kyhavlov e187c29
Update docs for subprocess changes
kyhavlov ac94e07
Fix tests for new subprocess behavior
kyhavlov 7489a7e
More cleanup of subprocesses
kyhavlov 4343054
Minor adjustments and cleanup for subprocess logic
kyhavlov dba2384
Makes the watch handler reload test use the new path.
slackpad 0c9f171
Adds check tests for new args path, and updates existing tests to use…
slackpad adf851d
Adds support for script args in Docker checks.
slackpad 08c23ea
Fixes the sanitize unit test.
slackpad f7f0b64
Adds panic for unknown watch type, and reverts back to Run().
slackpad 0bc10d1
Adds shell option back to consul lock command.
slackpad 262cb43
Adds shell option back to consul exec command.
slackpad d6f33f9
Adds shell back into consul watch command.
slackpad af34efc
Refactors signal forwarding and makes Windows-friendly.
slackpad 12c2d71
Adds a clarifying comment.
slackpad 9373824
Changes error wording to a warning.
slackpad f343900
Scopes signals to interrupt and kill.
slackpad c0bf614
Adds an error for shell=false for consul exec.
slackpad 073ccc0
Adds notes about the deprecated script and handler fields.
slackpad 1051b46
De-nests an if statement.
slackpad 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 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 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 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 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.
How about issuing a deprecation warning for
handler
here and in health checks?