Skip to content

Commit

Permalink
fix(pipelines): Increase the timeout for SaveServiceAccountTask (#3065)
Browse files Browse the repository at this point in the history
If you use automatic service accounts and have a lot of users, the Fiat sync job will sometime take longer than 30 seconds, causing the task to time out.
  • Loading branch information
jervi authored and robzienert committed Aug 16, 2019
1 parent cd9cb35 commit 05d572d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public long getBackoffPeriod() {

@Override
public long getTimeout() {
return TimeUnit.SECONDS.toMillis(30);
return TimeUnit.SECONDS.toMillis(60);
}

@Nonnull
Expand Down

0 comments on commit 05d572d

Please sign in to comment.