What are you really trying to do?
Describe the bug
A typo. In the third while loop of the script, this line:
if [ "$attempt" -ge "$MAX_ATTdMPTS" ]; then
should indeed be:
if [ "$attempt" -ge "$MAX_ATTEMPTS" ]; then
The variable is correctly defined as MAX_ATTEMPTS at the top of the file, and it is used correctly everywhere else in the script. Only that single occurrence is misspelled as MAX_ATTdMPTS.
Minimal Reproduction
Environment/Versions
- OS and processor: [e.g. M1 Mac, x86 Windows, Linux]
- Temporal Version: [e.g. 1.14.0?] and/or SDK version
- Are you using Docker or Kubernetes or building Temporal from source?
Additional context
What are you really trying to do?
Describe the bug
A typo. In the third while loop of the script, this line:
should indeed be:
The variable is correctly defined as MAX_ATTEMPTS at the top of the file, and it is used correctly everywhere else in the script. Only that single occurrence is misspelled as MAX_ATTdMPTS.
Minimal Reproduction
Environment/Versions
Additional context