We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1713b89 commit 3f27acbCopy full SHA for 3f27acb
src/scenarios/shared/mauisharedpython.py
@@ -265,7 +265,12 @@ def install_latest_maui(
265
266
# Install the workload using the rollback file
267
getLogger().info("Installing maui workload with rollback file")
268
- precommands.install_workload('maui', ['--from-rollback-file', 'rollback_maui.json'])
+ try:
269
+ precommands.install_workload('maui', ['--from-rollback-file', 'rollback_maui.json'])
270
+ except Exception as e:
271
+ getLogger().error(f"Failed to install MAUI workload: {e}")
272
+ # Re-raise to ensure the finally block runs and then propagate the error
273
+ raise
274
275
finally:
276
# Restore global.json if needed
0 commit comments