Sfoglia il codice sorgente

print traceback on topology collection error

Alex Cheema 11 mesi fa
parent
commit
784e6bae21
1 ha cambiato i file con 1 aggiunte e 0 eliminazioni
  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: