Skip to content

Commit c37024a

Browse files
author
Jim Robinson
committed
Raise error on failure
1 parent ba585ff commit c37024a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

croudtech_bootstrap_app/bootstrap.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ def push_secrets(self):
338338
SecretId=self.get_secret_id(secret),
339339
SecretString=secret_value,
340340
)
341-
except err:
341+
except Exception as err:
342342
logger.error(f"Failed to push secret {secret}")
343343
raise err
344344
self.environment.manager.click.secho(f"Pushed {self.environment.name}/{self.name} {secret}")

0 commit comments

Comments
 (0)