Skip to content

Commit

Permalink
WARM targets can be set non-negative
Browse files Browse the repository at this point in the history
  • Loading branch information
jayanthvn committed Aug 3, 2021
1 parent 17b33a5 commit 1e69bc8
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 1e69bc8

Please sign in to comment.