File tree Expand file tree Collapse file tree 1 file changed +15
-2
lines changed
Expand file tree Collapse file tree 1 file changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -63,7 +63,13 @@ if [ "$collection_exists" = "false" ]; then
6363 --header 'Content-Type: application/json'
6464 --header 'X-API-Key: **********'
6565 --data ${collection_transformed_path} "
66- curl --show-error --fail --retry 5 --retry-all-errors --silent \
66+ curl --show-error \
67+ --retry 10 \
68+ --retry-delay 30 \
69+ --retry-max-time 300 \
70+ --retry-all-errors \
71+ --fail \
72+ --silent \
6773 --location " https://api.getpostman.com/collections?workspace=${WORKSPACE_ID} " \
6874 --header " Content-Type: application/json" \
6975 --header " X-API-Key: ${POSTMAN_API_KEY} " \
8086 --header 'X-API-Key: **********'
8187 --data ${collection_transformed_path} "
8288
83- curl --show-error --fail --retry 5 --retry-all-errors --silent --request PUT \
89+ curl --show-error \
90+ --retry 10 \
91+ --retry-delay 30 \
92+ --retry-max-time 300 \
93+ --retry-all-errors \
94+ --fail \
95+ --silent \
96+ --request PUT \
8497 --location " https://api.getpostman.com/collections/${collection_id} " \
8598 --header " Content-Type: application/json" \
8699 --header " X-API-Key: ${POSTMAN_API_KEY} " \
You can’t perform that action at this time.
0 commit comments