From c46dd4d923ebdb1f023da6aab92c32a2e7c9c09b Mon Sep 17 00:00:00 2001 From: "John L. Hammond" Date: Wed, 20 Oct 2021 06:04:07 -0500 Subject: [PATCH] EX-4101 lipe: fix stratagem-hp-config.sh typo In stratagem-hp-config.sh, change is_valid_precent to is_valid_percent. Fixes: dcc46813c0c3 ("EX-3890 lipe: raise pool spilling threshold") Signed-off-by: John L. Hammond Change-Id: Ic0ae2c24238fcf18ee9b6760c0f5c067aaccd84e Reviewed-on: https://review.whamcloud.com/45307 Tested-by: jenkins Reviewed-by: James Nunez Tested-by: Maloo Reviewed-by: Andreas Dilger --- lipe/scripts/stratagem-hp-config.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lipe/scripts/stratagem-hp-config.sh b/lipe/scripts/stratagem-hp-config.sh index b787ef9..07fa775 100755 --- a/lipe/scripts/stratagem-hp-config.sh +++ b/lipe/scripts/stratagem-hp-config.sh @@ -181,7 +181,7 @@ if ! is_valid_percent "${LPURGE_FREELO}"; then usage 34 fi -if ! is_valid_precent "%{FAST_POOL_SPILL_THRESHOLD_PCT}"; then +if ! is_valid_percent "%{FAST_POOL_SPILL_THRESHOLD_PCT}"; then echo "Invalid FAST_POOL_SPILL_THRESHOLD_PCT percentage '${FAST_POOL_SPILL_THRESHOLD_PCT}'" usage 34 fi -- 1.8.3.1