Skip to content

Commit

Permalink
double timeout on flaky test (#314)
Browse files Browse the repository at this point in the history
  • Loading branch information
pjfanning authored Sep 26, 2024
1 parent 2caae13 commit 6f970c6
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ class KubernetesApiSpec

WireMock.configureFor(settings.apiServerPort)

implicit val patience: PatienceConfig = PatienceConfig(testKitSettings.DefaultTimeout.duration)
// double the default timeout for CI (https://github.com/apache/pekko-management/issues/216)
implicit val patience: PatienceConfig = PatienceConfig(testKitSettings.DefaultTimeout.duration.*(2))

val underTest = new KubernetesApiImpl(system, settings) {
// avoid touching slow CI filesystem
Expand Down

0 comments on commit 6f970c6

Please sign in to comment.