From d1a3503a7fe1f50ebf3dc14217dee29d1d8367b9 Mon Sep 17 00:00:00 2001 From: Chris Evich Date: Fri, 17 Nov 2023 14:50:27 -0500 Subject: [PATCH] Minor: Adjust status message The term "BUSY" implies the dedicated host is doing something else. This is not the case for staggering launches. Use a more descriptive status indicator for this. Signed-off-by: Chris Evich --- mac_pw_pool/LaunchInstances.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mac_pw_pool/LaunchInstances.sh b/mac_pw_pool/LaunchInstances.sh index 9236ab1..703d804 100755 --- a/mac_pw_pool/LaunchInstances.sh +++ b/mac_pw_pool/LaunchInstances.sh @@ -203,7 +203,7 @@ for name_hostid in "${NAME2HOSTID[@]}"; do dbg " now_hour=$now_hour" if [[ $now_hour -lt $launch_threshold_hour ]]; then msg "Cannot launch new instance until $launch_threshold" - echo "# $name HOST BUSY: Inst. creation delayed until $launch_threshold" > "$inststate" + echo "# $name HOST THROTTLE: Inst. creation delayed until $launch_threshold" > "$inststate" continue else launch_new=1