From be7079578e0907fd3f35f91e9716246c179e17e9 Mon Sep 17 00:00:00 2001 From: Zach Koopmans Date: Tue, 4 Aug 2020 16:48:40 -0700 Subject: Port sysbench benchmark. PiperOrigin-RevId: 324918229 --- test/benchmarks/tools/redis.go | 1 - 1 file changed, 1 deletion(-) (limited to 'test/benchmarks/tools/redis.go') diff --git a/test/benchmarks/tools/redis.go b/test/benchmarks/tools/redis.go index db32460ec..c899ae0d4 100644 --- a/test/benchmarks/tools/redis.go +++ b/test/benchmarks/tools/redis.go @@ -56,7 +56,6 @@ func (r *Redis) Report(b *testing.B, output string) { func (r *Redis) parseOperation(data string) (float64, error) { re := regexp.MustCompile(fmt.Sprintf(`"%s( .*)?","(\d*\.\d*)"`, r.Operation)) match := re.FindStringSubmatch(data) - // If no match, simply don't add it to the result map. if len(match) < 3 { return 0.0, fmt.Errorf("could not find %s in %s", r.Operation, data) } -- cgit v1.2.3