You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[develop][cli] Use retry loop with curl as --retry-all-errors is available in curl v7.71+
* curl 7.71 is available in all OS except rhel8 and rocky8
* applying the same exponential backoff as with previous change where we wait at max (1 + 2 + 4 + 8 + 16 + 32 + 64 + 128 + 256 = 511 seconds) of 8.51 minutes
Copy file name to clipboardExpand all lines: cli/src/pcluster/resources/compute_node/user_data.sh
+6-1Lines changed: 6 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -137,7 +137,12 @@ write_files:
137
137
error_exit "This AMI was not baked by ParallelCluster. Please use pcluster build-image command to create an AMI by providing your AMI as parent image."
Copy file name to clipboardExpand all lines: cli/src/pcluster/resources/head_node/user_data.sh
+6-1Lines changed: 6 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -123,7 +123,12 @@ else
123
123
error_exit "This AMI was not baked by ParallelCluster. Please use pcluster build-image command to create an AMI by providing your AMI as parent image."
Copy file name to clipboardExpand all lines: cli/src/pcluster/resources/login_node/user_data.sh
+6-1Lines changed: 6 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -120,7 +120,12 @@ write_files:
120
120
error_exit "This AMI was not baked by ParallelCluster. Please use pcluster build-image command to create an AMI by providing your AMI as parent image."
0 commit comments