From 30512911e206c4dc6b24ac46b3e02c2ea2c3633c Mon Sep 17 00:00:00 2001 From: Alberto Codutti Date: Mon, 8 Mar 2021 16:02:53 +0100 Subject: [PATCH] Fixed declaration of showStacktrace in Console assembly run file Signed-off-by: Alberto Codutti --- assembly/console/entrypoint/run-console | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assembly/console/entrypoint/run-console b/assembly/console/entrypoint/run-console index 0234bae871b..08d40a6ddd8 100755 --- a/assembly/console/entrypoint/run-console +++ b/assembly/console/entrypoint/run-console @@ -61,7 +61,7 @@ test -n "${MFA_TRUST_KEY_DURATION}" && JAVA_OPTS="${JAVA_OPTS} -Dauthentication. # Device Mannagement Configurations : DEVICE_MANAGEMENT_RESPONSE_STACKTRACE_SHOW=${DEVICE_MANAGEMENT_RESPONSE_STACKTRACE_SHOW:=false } -test -n "${DEVICE_MANAGEMENT_RESPONSE_STACKTRACE_SHOW}" && JAVA_OPTS="${JAVA_OPTS} -Ddevice.management.response.stacktrace.show${DEVICE_MANAGEMENT_RESPONSE_STACKTRACE_SHOW}" +test -n "${DEVICE_MANAGEMENT_RESPONSE_STACKTRACE_SHOW}" && JAVA_OPTS="${JAVA_OPTS} -Ddevice.management.response.stacktrace.show=${DEVICE_MANAGEMENT_RESPONSE_STACKTRACE_SHOW}" export JAVA_OPTS