diff options
Diffstat (limited to 'pkg/worker_watcher/container')
-rw-r--r-- | pkg/worker_watcher/container/channel/vec.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/worker_watcher/container/channel/vec.go b/pkg/worker_watcher/container/channel/vec.go index c06d05b0..51093978 100644 --- a/pkg/worker_watcher/container/channel/vec.go +++ b/pkg/worker_watcher/container/channel/vec.go @@ -30,7 +30,7 @@ func NewVector(len uint64) *Vec { } // Push is O(1) operation -// In case of TTL and full channel O(n) worst case +// In case of TTL and full channel O(n) worst case, where n is len of the channel func (v *Vec) Push(w worker.BaseProcess) { // Non-blocking channel send select { |