diff options
author | Valery Piashchynski <[email protected]> | 2020-10-27 15:50:57 +0300 |
---|---|---|
committer | GitHub <[email protected]> | 2020-10-27 15:50:57 +0300 |
commit | 105bde0e0c1a7c133d1daa10603ca5ce9a9ade4d (patch) | |
tree | 0d4664ef76ff6515fa965690a79dc69604eb3849 /worker_watcher.go | |
parent | 91cf918b30938129609323ded53e190385e019a6 (diff) | |
parent | 2176584129e493e08aed158bc050070d520ee183 (diff) |
Merge pull request #376 from spiral/feature/lazy-load
Feature/lazy load
Diffstat (limited to 'worker_watcher.go')
-rwxr-xr-x | worker_watcher.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/worker_watcher.go b/worker_watcher.go index 25c88a1a..5ae54024 100755 --- a/worker_watcher.go +++ b/worker_watcher.go @@ -19,7 +19,7 @@ type Stack struct { func NewWorkersStack() *Stack { return &Stack{ - workers: make([]WorkerBase, 0, 12), + workers: make([]WorkerBase, 0), } } |