Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
kiendang committed May 16, 2024
1 parent 74038fe commit b9554e5
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion packages/syft/src/syft/service/worker/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,12 @@ def create_kubernetes_pool(
except Exception as e:
if pool:
pool.delete()
return SyftError(message=f"Failed to start workers {e}.")
# stdlib
import traceback

return SyftError(
message=f"Failed to start workers {e} {e.__class__} {e.args} {traceback.format_exc()}."
)

return runner.get_pool_pods(pool_name=pool_name)

Expand Down

0 comments on commit b9554e5

Please sign in to comment.