Skip to content

Commit

Permalink
chore(eks): bad indent in kubectl apply handler (aws#16106)
Browse files Browse the repository at this point in the history
----

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
  • Loading branch information
chauncey-garrett authored and smguggen committed Aug 24, 2021
1 parent 838f1a2 commit 5ee1033
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ def kubectl(verb, file, *opts):
except subprocess.CalledProcessError as exc:
output = exc.output
if b'i/o timeout' in output and retry > 0:
retry = retry - 1
logger.info("kubectl timed out, retries left: %s" % retry)
retry = retry - 1
logger.info("kubectl timed out, retries left: %s" % retry)
else:
raise Exception(output)
else:
Expand Down

0 comments on commit 5ee1033

Please sign in to comment.