You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# These are critical uncaught exceptions, make sure the end user is at least informed
433
443
# that unpacking has failed -- do not share unhandled exception details
434
444
logger.error(traceback.format_exc())
435
-
message="Unpacking the bundle failed. Here is the error log: {}".format(e)
445
+
ifisinstance(e, KeyError):
446
+
message=f"Unpacking the bundle failed. A required key or referenced index ({e}) was not found in the YAML. Check that all mandatory fields are present and that any item referenced by index is correctly defined."
447
+
else:
448
+
message=f"Unpacking the bundle failed. Here is the error log: {e}"
0 commit comments