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
According to the website here, specifying a extraJvmArguments will generate scripts where a an env variable EXTRA_JVM_ARGUMENTS is used to pass the specified args. As far as I understand this is no longer the case since MAPPASM-181.
The text was updated successfully, but these errors were encountered:
In those docs, that variable was a local shell script variable set to EXTRA_JVM_ARGUMENTS="" unless configuration.programs.program.jvmSettings.extraArguments.extraArgument were present (then it was set to the space concatenation of those), rather than a way to override generated script setting from the environment though right? Current script generator does seem to not use that approach (just inlines the extraArguments with spaces interposed), but I don't think behavior is different.
In any case, maybe you were attempting to do #48 too?
Yes, I guess my use case is similar to #48 , mine is a command line utility and I want to give a simple way to the users to pass/change Xmx and perhaps other jvm args
According to the website here, specifying a
extraJvmArguments
will generate scripts where a an env variableEXTRA_JVM_ARGUMENTS
is used to pass the specified args. As far as I understand this is no longer the case since MAPPASM-181.The text was updated successfully, but these errors were encountered: