mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2026-02-09 09:17:28 +08:00
filer: avoid possible timeouts for updates and deletions
This commit is contained in:
25
weed/util/queue_unbounded_test.go
Normal file
25
weed/util/queue_unbounded_test.go
Normal file
@@ -0,0 +1,25 @@
|
||||
package util
|
||||
|
||||
import "testing"
|
||||
|
||||
func TestEnqueueAndConsume(t *testing.T) {
|
||||
|
||||
q := NewUnboundedQueue()
|
||||
|
||||
q.EnQueue("1", "2", "3")
|
||||
|
||||
f := func(items []string) {
|
||||
for _, t := range items {
|
||||
println(t)
|
||||
}
|
||||
println("-----------------------")
|
||||
}
|
||||
q.Consume(f)
|
||||
|
||||
q.Consume(f)
|
||||
|
||||
q.EnQueue("4", "5")
|
||||
q.EnQueue("6", "7")
|
||||
q.Consume(f)
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user