diff --git a/cmd/stresstest/stresstest.go b/cmd/stresstest/stresstest.go index 56ef2eaad..beea3b81f 100644 --- a/cmd/stresstest/stresstest.go +++ b/cmd/stresstest/stresstest.go @@ -13,7 +13,7 @@ func main() { cd := timespans.CallDescriptor{CstmId: "vdf", Subject: "rif", DestinationPrefix: "0256", TimeStart: t1, TimeEnd: t2} result := timespans.CallCost{} client, _ := jsonrpc.Dial("tcp", "localhost:5090") - runs := int(5 * 1e4) + runs := int(1e5) i := 0 c := make(chan string) for ; i < runs; i++ { diff --git a/cmd/stresstest/stresstest.py b/cmd/stresstest/stresstest.py index 67bdb192a..340571b9c 100644 --- a/cmd/stresstest/stresstest.py +++ b/cmd/stresstest/stresstest.py @@ -52,6 +52,6 @@ print s.recv(4096) i = 0 result = "" -for i in xrange(int(1e4) + 1): +for i in xrange(int(1e5) + 1): result = rpc.call("Responder.Get", cd) print i, result