Browse Source

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

Still log it, though
Ian Goldberg 4 years ago
parent
commit
beb5820498
1 changed files with 1 additions and 1 deletions
  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