File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
src/main/kotlin/dev/restate/sdktesting/tests Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -67,23 +67,25 @@ class SleepWithFailures {
6767 .isGreaterThanOrEqualTo(sleepDuration.toJavaDuration())
6868 }
6969
70- @Timeout(value = 45 , unit = TimeUnit .SECONDS )
70+ @Timeout(value = 60 , unit = TimeUnit .SECONDS )
7171 @Test
7272 fun sleepAndKillServiceEndpoint (
7373 @InjectClient ingressClient : Client ,
7474 @InjectContainerHandle(ServiceSpec .DEFAULT_SERVICE_NAME ) coordinatorContainer : ContainerHandle
7575 ) {
76- runTest(timeout = 30 .seconds) {
76+ runTest(timeout = 60 .seconds) {
7777 asyncSleepTest(ingressClient) { coordinatorContainer.killAndRestart() }
7878 }
7979 }
8080
81- @Timeout(value = 45 , unit = TimeUnit .SECONDS )
81+ @Timeout(value = 60 , unit = TimeUnit .SECONDS )
8282 @Test
8383 fun sleepAndTerminateServiceEndpoint (
8484 @InjectClient ingressClient : Client ,
8585 @InjectContainerHandle(ServiceSpec .DEFAULT_SERVICE_NAME ) coordinatorContainer : ContainerHandle
8686 ) {
87- runTest { asyncSleepTest(ingressClient) { coordinatorContainer.terminateAndRestart() } }
87+ runTest(timeout = 60 .seconds) {
88+ asyncSleepTest(ingressClient) { coordinatorContainer.terminateAndRestart() }
89+ }
8890 }
8991}
You can’t perform that action at this time.
0 commit comments