You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is related to the change in #842, sorry to find it out so lately.
If you create a job with a space in the command path, this will failed since the check only check for any whitespace. A more thorough check should be done to allow quoting (or the check should be downgrade to a warning, preferably during the submission of the job, not that late!).
Thanks,
Fabien
The text was updated successfully, but these errors were encountered:
I'm trying to figure out what should be the right fix for that, but I feel that the best way is to simply accept commands with space inside the path. Given the fact that the error is reported so lately, the result is almost the same: the executor either report this error (which is misleading if the process actually doesn't have any argument) or fail because the file actually doesn't exist. May be the message in case of error could be modified in this regard, and the validation removed ?
This PR removes validation that the command string does not contain
spaces. This can cause issues where the path contains a folder that
includes a space ("C:\Program Files\Python35\python.exe").
Fixes#1737
This PR removes validation that the command string does not contain
spaces. This can cause issues where the path contains a folder that
includes a space ("C:\Program Files\Python35\python.exe").
Fixeshashicorp#1737
I'm going to lock this issue because it has been closed for 120 days ⏳. This helps our maintainers find and focus on the active issues.
If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.
This is related to the change in #842, sorry to find it out so lately.
If you create a job with a space in the command path, this will failed since the check only check for any whitespace. A more thorough check should be done to allow quoting (or the check should be downgrade to a warning, preferably during the submission of the job, not that late!).
Thanks,
Fabien
The text was updated successfully, but these errors were encountered: