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
"failed to find physical volume for the partition")
191
-
raiseStorageError(
192
-
"failed to find physical volume for the partition")
187
+
raiseStorageError(f"no VIOS server attached with available physical disk on the system '{util.get_host_address(config)}' to attach to the PIM partition")
logger.error("failed to find physical volume for the partition")
204
-
raiseStorageError("failed to find physical volume for the partition")
198
+
raiseStorageError(f"no VIOS server attached with available physical disk on the system '{util.get_host_address(config)}' to attach to the PIM partition")
logger.debug(f"Found network with VLAN '{vlan_id}' and Switch '{vswitch_id}' attached to lpar.")
82
79
slot_num=soup.find("VirtualSlotNumber").text
83
80
returnTrue, slot_num
84
-
else:
85
-
raiseNetworkError(f"failed to check if virtual network is attached to the partition, error: {response.text}")
81
+
response.raise_for_status()
82
+
exceptrequests.exceptions.RequestExceptionase:
83
+
raiseNetworkError(f"failed to check if virtual network is attached to the partition while making http request, error: {e}, response: {e.response.text}")
86
84
exceptExceptionase:
87
-
logger.error(f"failed to check if virtual network is attached to the partition, error: {e}")
88
-
raisee
85
+
raiseNetworkError(f"failed to check if virtual network is attached to the partition, error: {e}")
0 commit comments