diff --git a/cmd/influx_stress/influx_stress.go b/cmd/influx_stress/influx_stress.go index bb61e53710..608a33dc83 100644 --- a/cmd/influx_stress/influx_stress.go +++ b/cmd/influx_stress/influx_stress.go @@ -38,8 +38,6 @@ func main() { return } - fmt.Printf("%#v\n", cfg.Write) - if *batchSize != 0 { cfg.Write.BatchSize = *batchSize } @@ -64,8 +62,6 @@ func main() { cfg.Write.Precision = *precision } - fmt.Printf("%#v\n", cfg.Write) - d := make(chan struct{}) seriesQueryResults := make(chan runner.QueryResults) diff --git a/stress/runner.go b/stress/runner.go index bda0f2d00f..1c758a065c 100644 --- a/stress/runner.go +++ b/stress/runner.go @@ -275,7 +275,6 @@ func Run(cfg *Config, done chan struct{}, ts chan time.Time) (totalPoints int, f fmt.Println("ERROR: ", err.Error()) } failedRequests += 1 - //totalPoints -= len(b.Points) totalPoints -= cfg.Write.BatchSize lastSuccess = false mu.Unlock()