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
There is an issue with lost quoting using Equalizer apps. For example:
app --arg="quoted∧quoted"
Will become:
ssh ... 'app --arg=quoted∧quoted' ...
Instead of:
ssh ... 'app --arg="quoted∧quoted"' ...
As a result, the app will not run the same way on the different nodes, and various arguments will run as commands and fail.
The 'ssh' command is created in _createRemoteCommand and _launch in Equalizer/eq/server/node.cpp using the SATTR_LAUNCH_COMMAND and CATTR_LAUNCH_COMMAND_QUOTE formatting strings in Equalizer/eq/server/global.cpp.
The text was updated successfully, but these errors were encountered:
There is an issue with lost quoting using Equalizer apps. For example:
Will become:
Instead of:
As a result, the app will not run the same way on the different nodes, and various arguments will run as commands and fail.
The 'ssh' command is created in _createRemoteCommand and _launch in Equalizer/eq/server/node.cpp using the SATTR_LAUNCH_COMMAND and CATTR_LAUNCH_COMMAND_QUOTE formatting strings in Equalizer/eq/server/global.cpp.
The text was updated successfully, but these errors were encountered: