Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion operator/src/main/resources/scripts/utils.sh
Original file line number Diff line number Diff line change
Expand Up @@ -548,7 +548,9 @@ function waitForShutdownMarker() {
if [ -e ${SHUTDOWN_MARKER_FILE} ] ; then
exit 0
fi
sleep 0.1
# Set the SERVER_SLEEP_INTERVAL_SECONDS environment variable in the domain specs in
# `spec.serverPod.env` stanza to override the default sleep interval value of 1 second.
sleep ${SERVER_SLEEP_INTERVAL_SECONDS:-1}
done
}

Expand Down