tool: make parser reject blank arguments if not supported#12620
Closed
tool: make parser reject blank arguments if not supported#12620
Conversation
qhill
reviewed
Jan 3, 2024
Already in the getstr() function that clones the input argument. Closes #12620
170fe94 to
b37c40d
Compare
This was referenced Mar 18, 2024
efranken
added a commit
to efranken/ToscaExecutionClient
that referenced
this pull request
Jul 10, 2024
As of curl 8.6.0, curl fails if a blank arg is passed. curl/curl#12620 Default behavior of tosca_execution_client.sh is to pass a blank --cacert to curl if --cacertificate is not specified when running the execution client script. This modifies the execution client to not pass --cacert at all if --cacertificate is not specified when running the execution client. If --cacertificate is specified, curl is passed "--cacert " followed by the value of the --cacertificate flag specified when running the execution client.
AgileAOTeam
pushed a commit
to Tricentis/ToscaExecutionClient
that referenced
this pull request
Jul 17, 2024
As of curl 8.6.0, curl fails if a blank arg is passed. curl/curl#12620 Default behavior of tosca_execution_client.sh is to pass a blank --cacert to curl if --cacertificate is not specified when running the execution client script. This modifies the execution client to not pass --cacert at all if --cacertificate is not specified when running the execution client. If --cacertificate is specified, curl is passed "--cacert " followed by the value of the --cacertificate flag specified when running the execution client.
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Already in the getstr() function that clones the input argument.