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 bfd7a16 commit a8c37f8Copy full SHA for a8c37f8
cassandra/datastax/cloud/__init__.py
@@ -137,7 +137,8 @@ def read_metadata_info(config, cloud_config):
137
response = urlopen(url, context=config.ssl_context, timeout=timeout)
138
except Exception as e:
139
log.exception(e)
140
- raise DriverException("Unable to connect to the metadata service at %s" % url)
+ raise DriverException("Unable to connect to the metadata service at %s. "
141
+ "Check the cluster status in the Constellation cloud console. " % url)
142
143
if response.code != 200:
144
raise DriverException(("Error while fetching the metadata at: %s. "
0 commit comments