We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec78124 commit fe8b9b7Copy full SHA for fe8b9b7
airbyte-integrations/bases/base-java/javabase.sh
@@ -19,6 +19,8 @@ fi
19
JAVA_OPTS=$JAVA_OPTS" -Dlog4j.encoder.byteBufferSize=32768 -Dlog4j2.configurationFile=log4j2.xml"
20
#needed because we make ThreadLocal.get(Thread) accessible in IntegrationRunner.stopOrphanedThreads
21
JAVA_OPTS=$JAVA_OPTS" --add-opens=java.base/java.lang=ALL-UNNAMED"
22
+# tell jooq to be quiet (https://stackoverflow.com/questions/28272284/how-to-disable-jooqs-self-ad-message-in-3-4)
23
+JAVA_OPTS=$JAVA_OPTS" -Dorg.jooq.no-logo=true -Dorg.jooq.no-tips=true"
24
export JAVA_OPTS
25
26
# Wrap run script in a script so that we can lazy evaluate the value of APPLICATION. APPLICATION is
0 commit comments