Skip to content

Commit

Permalink
Increase timeouts to prevent flakiness (#5953)
Browse files Browse the repository at this point in the history
Activity tasks in this test will be ratelimited and thus retried a few times by history service.
  • Loading branch information
sankari165 authored Apr 29, 2024
1 parent 85f21d9 commit c669c4f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions host/workflowsidinternalratelimit_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -155,9 +155,9 @@ func (s *WorkflowIDInternalRateLimitIntegrationSuite) TestWorkflowIDSpecificInte
ActivityType: &types.ActivityType{Name: activityName},
TaskList: &types.TaskList{Name: testTaskListName},
Input: buf.Bytes(),
ScheduleToCloseTimeoutSeconds: common.Int32Ptr(1),
ScheduleToStartTimeoutSeconds: common.Int32Ptr(1),
StartToCloseTimeoutSeconds: common.Int32Ptr(1),
ScheduleToCloseTimeoutSeconds: common.Int32Ptr(5),
ScheduleToStartTimeoutSeconds: common.Int32Ptr(5),
StartToCloseTimeoutSeconds: common.Int32Ptr(5),
HeartbeatTimeoutSeconds: common.Int32Ptr(1),
},
}}, nil
Expand Down

0 comments on commit c669c4f

Please sign in to comment.