@@ -228,7 +228,7 @@ func TestTimeoutConfigurationsPushNotifications(t *testing.T) {
228
228
// Wait for failover to complete
229
229
status , err := faultInjector .WaitForAction (ctx , failoverResp .ActionID ,
230
230
WithMaxWaitTime (180 * time .Second ),
231
- WithPollInterval (1 * time .Second ),
231
+ WithPollInterval (2 * time .Second ),
232
232
)
233
233
if err != nil {
234
234
ef ("[FI] Failover action failed for %s: %v" , timeoutTest .name , err )
@@ -263,8 +263,8 @@ func TestTimeoutConfigurationsPushNotifications(t *testing.T) {
263
263
264
264
// Wait for migration to complete
265
265
status , err = faultInjector .WaitForAction (ctx , migrateResp .ActionID ,
266
- WithMaxWaitTime (120 * time .Second ),
267
- WithPollInterval (1 * time .Second ),
266
+ WithMaxWaitTime (240 * time .Second ),
267
+ WithPollInterval (2 * time .Second ),
268
268
)
269
269
if err != nil {
270
270
ef ("[FI] Migrate action failed for %s: %v" , timeoutTest .name , err )
@@ -283,8 +283,8 @@ func TestTimeoutConfigurationsPushNotifications(t *testing.T) {
283
283
ef ("Failed to trigger bind action for %s: %v" , timeoutTest .name , err )
284
284
}
285
285
status , err = faultInjector .WaitForAction (ctx , bindResp .ActionID ,
286
- WithMaxWaitTime (120 * time .Second ),
287
- WithPollInterval (1 * time .Second ),
286
+ WithMaxWaitTime (240 * time .Second ),
287
+ WithPollInterval (2 * time .Second ),
288
288
)
289
289
if err != nil {
290
290
ef ("[FI] Bind action failed for %s: %v" , timeoutTest .name , err )
0 commit comments