Change blocking call sleep time
This commit is contained in:
parent
f3354b028e
commit
30f8573c78
|
@ -482,7 +482,7 @@ func TestCatalogListServices_Blocking(t *testing.T) {
|
||||||
// Async cause a change
|
// Async cause a change
|
||||||
start := time.Now()
|
start := time.Now()
|
||||||
go func() {
|
go func() {
|
||||||
time.Sleep(50 * time.Millisecond)
|
time.Sleep(100 * time.Millisecond)
|
||||||
s1.fsm.State().EnsureNode(1, structs.Node{"foo", "127.0.0.1"})
|
s1.fsm.State().EnsureNode(1, structs.Node{"foo", "127.0.0.1"})
|
||||||
s1.fsm.State().EnsureService(2, "foo", &structs.NodeService{"db", "db", []string{"primary"}, 5000})
|
s1.fsm.State().EnsureService(2, "foo", &structs.NodeService{"db", "db", []string{"primary"}, 5000})
|
||||||
}()
|
}()
|
||||||
|
@ -494,7 +494,7 @@ func TestCatalogListServices_Blocking(t *testing.T) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Should block at least 100ms
|
// Should block at least 100ms
|
||||||
if time.Now().Sub(start) < 50 * time.Millisecond {
|
if time.Now().Sub(start) < 100 * time.Millisecond {
|
||||||
t.Fatalf("too fast")
|
t.Fatalf("too fast")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -530,7 +530,7 @@ func TestCatalogListServices_Timeout(t *testing.T) {
|
||||||
|
|
||||||
// Setup a blocking query
|
// Setup a blocking query
|
||||||
args.MinQueryIndex = out.Index
|
args.MinQueryIndex = out.Index
|
||||||
args.MaxQueryTime = 50 * time.Millisecond
|
args.MaxQueryTime = 100 * time.Millisecond
|
||||||
|
|
||||||
// Re-run the query
|
// Re-run the query
|
||||||
start := time.Now()
|
start := time.Now()
|
||||||
|
@ -540,7 +540,7 @@ func TestCatalogListServices_Timeout(t *testing.T) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Should block at least 100ms
|
// Should block at least 100ms
|
||||||
if time.Now().Sub(start) < 50 * time.Millisecond {
|
if time.Now().Sub(start) < 100 * time.Millisecond {
|
||||||
t.Fatalf("too fast")
|
t.Fatalf("too fast")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue