Skip to content

Commit

Permalink
Fix: State Error String
Browse files Browse the repository at this point in the history
I think this is having an issue with the color code around Error, so remove that bit of the string.
  • Loading branch information
jconstance-amplify committed Jan 16, 2024
1 parent 4f9fc0a commit a96c66c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bin/tf
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ def exec_tf_command(
elif "state data in S3 does not have the expected content" in error:
if update_digest(error, path, variables):
continue
elif "Error: Failed to persist state to backend" in error:
elif "Failed to persist state to backend" in error:
if repush_state(path):
continue

Expand Down
2 changes: 1 addition & 1 deletion terrawrap/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Place of record for the package version"""

__version__ = "0.9.32"
__version__ = "0.9.33"
__git_hash__ = "GIT_HASH"

0 comments on commit a96c66c

Please sign in to comment.