We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30212cc commit 011d8bfCopy full SHA for 011d8bf
operator/src/main/resources/scripts/utils.sh
@@ -548,7 +548,9 @@ function waitForShutdownMarker() {
548
if [ -e ${SHUTDOWN_MARKER_FILE} ] ; then
549
exit 0
550
fi
551
- sleep 0.1
+ # Set the SERVER_SLEEP_INTERVAL_SECONDS environment variable in the domain specs to
552
+ # override the default sleep interval value of 1 second.
553
+ sleep ${SERVER_SLEEP_INTERVAL_SECONDS:-1}
554
done
555
}
556
0 commit comments