summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosh Smith <josh.smith@codethink.co.uk>2020-09-03 13:30:18 +0100
committerJosh Smith <josh.smith@codethink.co.uk>2020-09-03 19:04:35 +0100
commitc48ef8ad839a322f8d7f4cf179d4fbe8124e53b4 (patch)
tree1f6b30820e229e5489387f2a7ec3ff0aac074b34
parent9699079a55efd69d1acc132400a2ca62d2bde455 (diff)
downloadbuildstream-qinusty/add-bb-remote-exec.tar.gz
TMP: LOGGING UNAVAILABLEqinusty/add-bb-remote-exec
-rw-r--r--src/buildstream/sandbox/_sandboxremote.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buildstream/sandbox/_sandboxremote.py b/src/buildstream/sandbox/_sandboxremote.py
index 41fb9e153..ed2ba2c4d 100644
--- a/src/buildstream/sandbox/_sandboxremote.py
+++ b/src/buildstream/sandbox/_sandboxremote.py
@@ -215,7 +215,7 @@ class SandboxRemote(SandboxREAPI):
except grpc.RpcError as e:
status_code = e.code()
if status_code == grpc.StatusCode.UNAVAILABLE:
- raise SandboxError("Failed contacting remote execution server at {}.".format(self.exec_url))
+ raise SandboxError("Failed contacting remote execution server at {}.\n\t{}".format(self.exec_url, e))
if status_code in (
grpc.StatusCode.INVALID_ARGUMENT,