소스 검색

Now that the VRF failures are supposed to have gone away, _do_ crash if we hit one

Still log it, though
Ian Goldberg 5 년 전
부모
커밋
beb5820498
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      simulator.py

+ 1 - 1
simulator.py

@@ -139,7 +139,7 @@ class Simulator:
                     random.choice(self.clients).channelmgr.new_circuit())
             except ValueError as e:
                 self.statslogger.error(str(e))
-                next
+                raise e
 
             simtime += random.expovariate(self.gamma * numclients)
             numcircs += 1