We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53495aa commit 791b6aeCopy full SHA for 791b6ae
scripts/aws/ec2.py
@@ -203,7 +203,7 @@ def __run_nitro_enclave(self):
203
"--enclave-cid", "42",
204
"--enclave-name", "uid2operator"
205
]
206
- if self.configs.get('debug_mode', True): #E2E override
+ if True: #E2E override
207
print("Running in debug_mode")
208
command += ["--debug-mode", "--attach-console"]
209
self.run_command(command)
scripts/aws/entrypoint.sh
@@ -100,7 +100,10 @@ fi
100
cd /app
101
102
# -- start operator
103
+echo "Printing configs before Java application..."
104
+cat /app/conf/config-final.json
105
echo "Starting Java application..."
106
+
107
java \
108
-XX:MaxRAMPercentage=95 -XX:-UseCompressedOops -XX:+PrintFlagsFinal \
109
-Djava.security.egd=file:/dev/./urandom \
0 commit comments