summaryrefslogtreecommitdiff
path: root/pkg
diff options
context:
space:
mode:
authorValery Piashchynski <[email protected]>2021-08-02 21:12:12 +0300
committerValery Piashchynski <[email protected]>2021-08-02 21:12:12 +0300
commit31752d8bd20294c7d52cd3612fbf18e44ce42637 (patch)
treebca88867ef3a1c1a6fea1ced7859346839e38e88 /pkg
parentc90c11b92e229280477a9b049e65ca1048825dd4 (diff)
Update CI, move all tests to the single source of truth - makefile
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'pkg')
-rw-r--r--pkg/worker_watcher/container/channel/vec.go2
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 {