This is an automated email from the ASF dual-hosted git repository. akitouni pushed a commit to branch abderrahim/re-investigation in repository https://gitbox.apache.org/repos/asf/buildstream.git
commit d2aa0aae3bf59ebc6e384129ff5264f676762336 Author: Abderrahim Kitouni <[email protected]> AuthorDate: Sat May 27 13:26:40 2023 +0100 add more logging --- src/buildstream/sandbox/_sandboxremote.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/buildstream/sandbox/_sandboxremote.py b/src/buildstream/sandbox/_sandboxremote.py index 299eefcca..bba26f583 100644 --- a/src/buildstream/sandbox/_sandboxremote.py +++ b/src/buildstream/sandbox/_sandboxremote.py @@ -16,6 +16,7 @@ import shutil from functools import partial +import traceback import grpc @@ -91,6 +92,7 @@ class SandboxRemote(SandboxREAPI): last_operation = operation except grpc.RpcError as e: + traceback.print_exc() status_code = e.code() if status_code in (
