diff options
author | Valery Piashchynski <[email protected]> | 2020-10-14 15:23:22 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2020-10-14 15:23:22 +0300 |
commit | a407be25f068a5c0a20a4cf96ddfaf4ccd3af739 (patch) | |
tree | 143e1ca6729d28b1d50e151a8d8050ac67e6f5ec /pool_supervisor.go | |
parent | b5f429667131ef91498d67d08242b9f46cc23d6d (diff) |
Fixed: race conditions in tests, Handle_Dead test activated
Diffstat (limited to 'pool_supervisor.go')
-rw-r--r-- | pool_supervisor.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pool_supervisor.go b/pool_supervisor.go index cadf5f9c..93afb8c6 100644 --- a/pool_supervisor.go +++ b/pool_supervisor.go @@ -99,7 +99,7 @@ func (sps *staticPoolSupervisor) control() error { ctx := context.TODO() // THIS IS A COPY OF WORKERS - workers := sps.pool.Workers(ctx) + workers := sps.pool.Workers() var totalUsedMemory uint64 for i := 0; i < len(workers); i++ { |