We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4dbcb6a + 868a7f4 commit 732da3bCopy full SHA for 732da3b
1 file changed
client/deis.py
@@ -2034,8 +2034,8 @@ def _dispatch_cmd(method, args):
2034
try:
2035
method(args)
2036
except requests.exceptions.ConnectionError as err:
2037
- logger.error("Couldn't connect to the Deis Controller. Make sure that the Controller URI is \
2038
-correct and the server is running.")
+ logger.error("Couldn't connect to the Deis Controller:\n{}\nMake sure that the Controller URI is \
+correct and the server is running.".format(err))
2039
sys.exit(1)
2040
except EnvironmentError as err:
2041
logger.error(err.args[0])
0 commit comments