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 bf859f0 commit e5fb863Copy full SHA for e5fb863
linstor/linstorapi.py
@@ -2774,7 +2774,9 @@ def connect(self):
2774
conn_errors.append(lne)
2775
2776
if len(conn_errors) == len(self._ctrl_host_list):
2777
- raise LinstorNetworkError("Unable to connect to any of the given controller hosts.", conn_errors)
+ raise LinstorNetworkError(
2778
+ "Unable to connect to any of the given controller hosts: " + str(self._ctrl_host_list),
2779
+ conn_errors)
2780
2781
@classmethod
2782
def controller_uri_list(cls, controller_list):
0 commit comments