浏览代码

print traceback on topology collection error

Alex Cheema 11 月之前
父节点
当前提交
784e6bae21
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      exo/orchestration/standard_node.py

+ 1 - 0
exo/orchestration/standard_node.py

@@ -299,6 +299,7 @@ class StandardNode(Node):
         await self.collect_topology()
       except Exception as e:
         print(f"Error collecting topology: {e}")
+        traceback.print_exc()
 
   async def get_inference_result(self, request_id: str) -> Tuple[Optional[np.ndarray], bool]:
     if request_id not in self.buffered_token_output: