Skip to content

Commit

Permalink
try reproduce failures for 22.8
Browse files Browse the repository at this point in the history
Signed-off-by: Slach <[email protected]>
  • Loading branch information
Slach committed Nov 3, 2024
1 parent 2baa3e1 commit efb8166
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/integration/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3058,7 +3058,7 @@ func (env *TestEnvironment) connectWithWait(r *require.Assertions, sleepBefore,
} else {
log.Info().Msg(out)
}
log.Warn().Msgf("clickhouse not ready %v, wait %v seconds", err, (pollInterval).Seconds())
log.Warn().Msgf("%s clickhouse not ready %v, wait %v seconds", env.ProjectName, err, (pollInterval).Seconds())
time.Sleep(pollInterval)
} else {
if compareVersion(os.Getenv("CLICKHOUSE_VERSION"), "20.8") > 0 {
Expand All @@ -3067,7 +3067,7 @@ func (env *TestEnvironment) connectWithWait(r *require.Assertions, sleepBefore,
if err == nil {
break
} else {
log.Warn().Msgf("mysql not ready %v, wait %d seconds", err, i)
log.Warn().Msgf("%s mysql not ready %v, wait %d seconds", env.ProjectName, err, i)
time.Sleep(time.Second * time.Duration(i))
}
} else {
Expand Down

0 comments on commit efb8166

Please sign in to comment.