Skip to content

Commit

Permalink
Bump oracle start timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
paveltiunov committed Jun 29, 2023
1 parent 6190c6c commit 422f171
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/cubejs-testing-shared/src/db/oracle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ export class OracleDBRunner extends DbRunnerAbstract {
.withEnv('ORACLE_PASSWORD', 'test')
.withHealthCheck({
test: 'healthcheck.sh',
interval: 2 * 1000,
interval: 5 * 1000,
timeout: 15 * 1000,
retries: 5,
retries: 12,
startPeriod: (isCI() ? 60 : 30) * 1000
})
.withWaitStrategy(Wait.forHealthCheck())
Expand Down

0 comments on commit 422f171

Please sign in to comment.