-
Notifications
You must be signed in to change notification settings - Fork 7
Bug fix on destroy flow and logging improvements #34
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
base: main
Are you sure you want to change the base?
Conversation
58d93bd to
6793664
Compare
| if len(active_vios_servers) == 0: | ||
| logger.error("failed to find active VIOS server") | ||
| raise VIOSError("failed to find active VIOS server") | ||
| raise VIOSError(f"no active VIOS server attached to the system '{util.get_host_address(config)}'") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
host address will be pointing to HMC IP. probably we can mention the system id or get corresponding system name and log.
| f"failed to attach '{physical_volume_name}' physical storage in VIOS '{vios_storage_uuid}'") | ||
| if index == len(vios_storage_list) - 1: | ||
| raise e | ||
| raise StorageError(f"failed to attach '{physical_volume_name}' physical storage in VIOS '{vios_storage_uuid}', error: {e}") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
guess we can rephrase to failed to attach physical storage: {'{physical_volume_name}' to VIOS '{vios_storage_uuid}'
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
minor ones, overall looks ok
|
looks good to me as well |
Add request handling exceptions Signed-off-by: Dharaneeshwaran Ravichandran <[email protected]>
77de230 to
ebfec1b
Compare
No description provided.