From a2d04e81c46557813c498ddec3a2d8d8dfa58ab9 Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Thu, 10 Jul 2025 10:44:25 -0600 Subject: [PATCH] Clarify warning --- docker/main/rootfs/usr/local/ulimit/set_ulimit.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/main/rootfs/usr/local/ulimit/set_ulimit.sh b/docker/main/rootfs/usr/local/ulimit/set_ulimit.sh index 8dcf51ca1..e5d1800a0 100755 --- a/docker/main/rootfs/usr/local/ulimit/set_ulimit.sh +++ b/docker/main/rootfs/usr/local/ulimit/set_ulimit.sh @@ -19,7 +19,7 @@ if [ "$current_soft_limit" -lt "$TARGET_SOFT_LIMIT" ]; then new_hard_limit=$(ulimit -Hn) if [ "$new_soft_limit" -ne "$TARGET_SOFT_LIMIT" ] || [ "$new_hard_limit" -ne "$TARGET_HARD_LIMIT" ]; then - echo "Warning: Limits were set, but not to the exact target values. Check system constraints." + echo "Warning: Nofile limits were set, but not to the exact target values." fi else echo "Warning: Failed to set new nofile limits."