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
{{ message }}
This repository was archived by the owner on Mar 18, 2020. It is now read-only.
When using an S2I build strategy with the exec entry point style, the following two tests fail:
testCommandLineArgumentsPassing
testApplicationPropertiesPassing
This is as a result of the command line args being converted to a JAVA_ARGS environment variable (as we cannot override the Docker Entrypoint with a S2I build) and the variables values not being properly escaped.
These tests need to pass by properly escaping the converted command line values.
When using an S2I build strategy with the
execentry point style, the following two tests fail:This is as a result of the command line args being converted to a
JAVA_ARGSenvironment variable (as we cannot override the Docker Entrypoint with a S2I build) and the variables values not being properly escaped.These tests need to pass by properly escaping the converted command line values.