@@ -1628,9 +1628,8 @@ function slack() {
1628
1628
)
1629
1629
1630
1630
debug " sending slack message with payload: %s" " ${payload} "
1631
- if ! curl -SsL --fail -X POST -H " Content-Type: application/json" -d " ${payload} " " ${webhook} " ; then
1632
- echo " ERROR: Failed to send slack notification" >&2
1633
- fi
1631
+ wrap curl -SsL --fail -X POST -H " Content-Type: application/json" -d " ${payload} " " ${webhook} " \
1632
+ " Failed to send slack notification"
1634
1633
}
1635
1634
1636
1635
# Install internal HashiCorp tools. These tools are expected to
@@ -1911,7 +1910,7 @@ function github_release_assets() {
1911
1910
1912
1911
github_request " ${req_args[@]} " -o " ${artifact} " " ${asset} " ||
1913
1912
" Failed to download asset (${artifact} ) in release ${release_name} for ${repository} "
1914
- printf " downloaded release asset %s from release %s on %s" " ${artifact} " " ${release_name} " " ${repository} "
1913
+ printf " downloaded release asset %s from release %s on %s\n " " ${artifact} " " ${release_name} " " ${repository} "
1915
1914
done
1916
1915
1917
1916
repository=" ${repository_bak} " # restore the repository value
@@ -3008,6 +3007,7 @@ function github_request() {
3008
3007
fi
3009
3008
3010
3009
local ratelimit_reset
3010
+ local ratelimit_remaining
3011
3011
local response_content=" "
3012
3012
3013
3013
# Read the response into lines for processing
@@ -3041,6 +3041,10 @@ function github_request() {
3041
3041
ratelimit_reset=" ${line##* ratelimit-reset: } "
3042
3042
debug " ratelimit reset time found: %s" " ${ratelimit_reset} "
3043
3043
fi
3044
+ if [[ " ${line} " == " x-ratelimit-remaining" * ]]; then
3045
+ ratelimit_remaining=" ${line##* ratelimit-remaining: } "
3046
+ debug " ratelimit requests remaining: %d" " ${ratelimit_remaining} "
3047
+ fi
3044
3048
done
3045
3049
3046
3050
# If the status was not detected, force an error
@@ -3062,12 +3066,16 @@ function github_request() {
3062
3066
3063
3067
# If the ratelimit reset was not detected force an error
3064
3068
if [ -z " ${ratelimit_reset} " ]; then
3065
- if [ " ${status} " = " 403" ]; then
3066
- failure " Request failed with 403 status response"
3067
- fi
3068
3069
failure " Failed to detect rate limit reset time for GitHub request"
3069
3070
fi
3070
3071
3072
+ # If there are requests still available against the ratelimt
3073
+ # and the status is a 403, then it's an actual 403 and not
3074
+ # a ratelimit
3075
+ if [[ " ${status} " = " 403" ]] && [[ " ${ratelimit_remaining} " -gt 0 ]]; then
3076
+ failure " Request failed with 403 status response"
3077
+ fi
3078
+
3071
3079
debug " rate limiting has been detected on request"
3072
3080
3073
3081
local reset_date
0 commit comments