From 48af6dea2ca21446c07debc270cad9e8b137b362 Mon Sep 17 00:00:00 2001 From: Prathamesh Musale Date: Tue, 29 Oct 2024 06:27:01 +0000 Subject: [PATCH] Remove payment requirement for undeployments (#22) Part of [Service provider auctions for web deployments](https://www.notion.so/Service-provider-auctions-for-web-deployments-104a6b22d47280dbad51d28aa3a91d75) Co-authored-by: Adw8 Reviewed-on: https://git.vdb.to/cerc-io/webapp-deployment-status-api/pulls/22 Co-authored-by: Prathamesh Musale Co-committed-by: Prathamesh Musale --- scripts/run.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/run.sh b/scripts/run.sh index a9bdb4e..f759f7b 100755 --- a/scripts/run.sh +++ b/scripts/run.sh @@ -135,7 +135,7 @@ while true; do --include-tags "$INCLUDE_TAGS" \ --exclude-tags "$EXCLUDE_TAGS" \ --lrn "$LRN" \ - --min-required-payment ${MIN_REQUIRED_PAYMENT:-0} \ + --min-required-payment 0 \ $EXTRA_UNDEPLOY_OPTS \ $UPDATE_OPTS \ --discover @@ -165,6 +165,7 @@ while true; do --config-upload-dir "$UPLOAD_DIRECTORY" \ --private-key-file "$OPENPGP_PRIVATE_KEY_FILE" \ --private-key-passphrase "$OPENPGP_PASSPHRASE" \ + --recreate-on-deploy true \ $AUCTION_OPTS \ $LOG_OPTS \ $EXTRA_DEPLOY_OPTS \