Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: State Error String #176

Merged
merged 1 commit into from
Jan 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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"
Loading