Skip to content

Commit

Permalink
WARM targets can be set non-negative (aws#1568)
Browse files Browse the repository at this point in the history
  • Loading branch information
jayanthvn authored and haouc committed Aug 24, 2021
1 parent 2fb9646 commit 33dc51b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ log_in_json()

unsupported_prefix_target_conf()
{
if [ "${WARM_PREFIX_TARGET}" == "0" ] && [ "${WARM_IP_TARGET}" == "0" ] && [ "${MINIMUM_IP_TARGET}" == "0" ];then
if [ "${WARM_PREFIX_TARGET}" <= "0" ] && [ "${WARM_IP_TARGET}" <= "0" ] && [ "${MINIMUM_IP_TARGET}" <= "0" ];then
true
else
false
Expand Down

0 comments on commit 33dc51b

Please sign in to comment.