Skip to content

Commit f272185

Browse files
Merge pull request #2684 from oracle/owls_94991_fix_backport_to_3.3
Backport fix for GitHub issue #2655 (OWLS-94991) to 3.3 release
2 parents cb3b1f1 + 2e7ba1d commit f272185

File tree

1 file changed

+3
-1
lines changed
  • operator/src/main/resources/scripts

1 file changed

+3
-1
lines changed

operator/src/main/resources/scripts/utils.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -548,7 +548,9 @@ function waitForShutdownMarker() {
548548
if [ -e ${SHUTDOWN_MARKER_FILE} ] ; then
549549
exit 0
550550
fi
551-
sleep 0.1
551+
# Set the SERVER_SLEEP_INTERVAL_SECONDS environment variable in the domain specs in
552+
# `spec.serverPod.env` stanza to override the default sleep interval value of 1 second.
553+
sleep ${SERVER_SLEEP_INTERVAL_SECONDS:-1}
552554
done
553555
}
554556

0 commit comments

Comments
 (0)