participant-integration-api: Increase the migration connection timeout. (#7558)

250ms is a bit low for CI when our database might be overloaded.

5 seconds seems like a decent balance between a quick response and
being sympathetic to slow/overloaded machines.

CHANGELOG_BEGIN
CHANGELOG_END
This commit is contained in:
Samir Talwar 2020-10-02 16:07:23 +02:00 committed by GitHub
parent 6a328212f2
commit 059ae41095
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -63,7 +63,7 @@ private[platform] class FlywayMigrations(jdbcUrl: String)(implicit loggingContex
jdbcUrl = jdbcUrl,
minimumIdle = 2,
maxPoolSize = 2,
connectionTimeout = 250.millis,
connectionTimeout = 5.seconds,
metrics = None,
)
}