mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
Merge pull request #6610 from heyitsanthony/bench-lease
benchmark: submit keepalive requests concurrently with report.Run()
This commit is contained in:
commit
3a6fe61c03
@ -68,10 +68,14 @@ func leaseKeepaliveFunc(cmd *cobra.Command, args []string) {
|
||||
}(clients[i])
|
||||
}
|
||||
|
||||
for i := 0; i < leaseKeepaliveTotal; i++ {
|
||||
requests <- struct{}{}
|
||||
}
|
||||
close(requests)
|
||||
wg.Add(1)
|
||||
go func() {
|
||||
defer wg.Done()
|
||||
for i := 0; i < leaseKeepaliveTotal; i++ {
|
||||
requests <- struct{}{}
|
||||
}
|
||||
close(requests)
|
||||
}()
|
||||
|
||||
rc := r.Run()
|
||||
wg.Wait()
|
||||
|
Loading…
x
Reference in New Issue
Block a user