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
Using the application plugin, applicationDefaultJvmArgs are inherited by the distribution, however applying this plugin causes those to be overwritten/ignored.
...and I see DEFAULT_JVM_OPTS='"-Dabc=123"' in the dist script. If I apply the plugin, that is removed/replaced with EG DEFAULT_JVM_OPTS="-javaagent:$APP_HOME/agent-libs/opentelemetry-javaagent-2.1.0.jar" despite the arg still being in my application block. It would be nice for these to play nice as that's an easy way to globally set default opts for all tasks/everywhere the application is used.
The text was updated successfully, but these errors were encountered:
Thanks @tajobe! I thought i had a test case for this, but clearly not, i'll work on a patch for this when I get the opportunity (happy to accept a contribution for this as well)
Using the application plugin,
applicationDefaultJvmArgs
are inherited by the distribution, however applying this plugin causes those to be overwritten/ignored.Without the plugin applied, I can set:
...and I see
DEFAULT_JVM_OPTS='"-Dabc=123"'
in the dist script. If I apply the plugin, that is removed/replaced with EGDEFAULT_JVM_OPTS="-javaagent:$APP_HOME/agent-libs/opentelemetry-javaagent-2.1.0.jar"
despite the arg still being in myapplication
block. It would be nice for these to play nice as that's an easy way to globally set default opts for all tasks/everywhere the application is used.The text was updated successfully, but these errors were encountered: