Skip to content

Commit

Permalink
increased sleep time to 300 secs before query in smoke test
Browse files Browse the repository at this point in the history
increased sleep time to 300 secs before query in smoke test
  • Loading branch information
nikhilsinhaparseable authored Jun 6, 2024
1 parent 5d912d9 commit 50a363d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions quest_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ func TestSmokeLoadWithK6Stream(t *testing.T) {
cmd.Run()
cmd.Output()
}
time.Sleep(120 * time.Second)
time.Sleep(300 * time.Second)
QueryLogStreamCount(t, NewGlob.QueryClient, NewGlob.Stream, 20000)
AssertStreamSchema(t, NewGlob.QueryClient, NewGlob.Stream, SchemaBody)
DeleteStream(t, NewGlob.QueryClient, NewGlob.Stream)
Expand Down Expand Up @@ -288,7 +288,7 @@ func TestSmokeLoad_TimePartition_WithK6Stream(t *testing.T) {
cmd.Run()
cmd.Output()
}
time.Sleep(60 * time.Second)
time.Sleep(300 * time.Second)
QueryLogStreamCount_Historical(t, NewGlob.QueryClient, time_partition_stream, 20000)
DeleteStream(t, NewGlob.QueryClient, time_partition_stream)
}
Expand Down Expand Up @@ -320,7 +320,7 @@ func TestSmokeLoad_CustomPartition_WithK6Stream(t *testing.T) {
cmd.Run()
cmd.Output()
}
time.Sleep(120 * time.Second)
time.Sleep(300 * time.Second)
QueryLogStreamCount(t, NewGlob.QueryClient, custom_partition_stream, 20000)
DeleteStream(t, NewGlob.QueryClient, custom_partition_stream)
}
Expand Down Expand Up @@ -352,7 +352,7 @@ func TestSmokeLoad_TimeAndCustomPartition_WithK6Stream(t *testing.T) {
cmd.Run()
cmd.Output()
}
time.Sleep(120 * time.Second)
time.Sleep(300 * time.Second)
QueryLogStreamCount_Historical(t, NewGlob.QueryClient, custom_partition_stream, 20000)
DeleteStream(t, NewGlob.QueryClient, custom_partition_stream)
}
Expand Down

0 comments on commit 50a363d

Please sign in to comment.