You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by mm...@apache.org on 2020/05/21 05:38:03 UTC

[pulsar-client-go] branch master updated: fix: wrong target (#256)

This is an automated email from the ASF dual-hosted git repository.

mmerli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar-client-go.git


The following commit(s) were added to refs/heads/master by this push:
     new 7055076  fix: wrong target (#256)
7055076 is described below

commit 70550769c1d913fe54c3c33ce9ad736dc6b39eab
Author: jony montana <hy...@gmail.com>
AuthorDate: Thu May 21 13:37:57 2020 +0800

    fix: wrong target (#256)
    
    Signed-off-by: jonyhy96 <hy...@gmail.com>
---
 perf/perf-producer.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/perf/perf-producer.go b/perf/perf-producer.go
index a3e6cde..0085c07 100644
--- a/perf/perf-producer.go
+++ b/perf/perf-producer.go
@@ -132,7 +132,7 @@ func produce(produceArgs *ProduceArgs, stop <-chan struct{}) {
 
 	// Print stats of the publish rate and latencies
 	tick := time.NewTicker(10 * time.Second)
-	q := quantile.NewTargeted(0.90, 0.95, 0.99, 0.999, 1.0)
+	q := quantile.NewTargeted(0.50, 0.95, 0.99, 0.999, 1.0)
 	messagesPublished := 0
 
 	for {