Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #64 from BuoyantIO/kleimkuhler/update-modules
Update the minor/patch version of Go modules (and fix the max-rps issue). As I was looking into #62, I was looking at some documentation and noticed the signatures did not match. I updated the Go module minor versions and this seems to have fixed this issue. I did not look too much more into the actual implementation after this, but I think we should at least get this change in and see if it resolves the user's cases in #62. Before (on every run): ``` strest-grpc on master [!] via 🐹 v1.14.2 took 2s ❯ ./strest-grpc max-rps panic: runtime error: index out of range [0] with length 0 goroutine 530 [running]: github.com/buoyantio/strest-grpc/max-rps.Config.Run.func2(0x0, 0x0, 0x0, 0xc0009ce500, 0x3, 0x3, 0x10078ab, 0xc0009cd0e0, 0xc000046fa0) /Users/kevin/Projects/BuoyantIO/strest-grpc/max-rps/max-rps.go:81 +0x246 .. ``` After: ``` strest-grpc on kleimkuhler/update-modules via 🐹 v1.14.2 took 3s ❯ ./strest-grpc max-rps [1 5921 5 17369 10 30836 20 36301 30 39182] sigma (the overhead of contention): 0.060190636770402116 kappa (the overhead of crosstalk): 0.0011009192413378307 lambda (unloaded performance): 4786.482977774541 maxConcurrency: 29.000000 maxRps: 38780.939574 ``` Signed-off-by: Kevin Leimkuhler <kevin@kleimkuhler.com>
- Loading branch information