Skip to content

Commit 3c43ab8

Browse files
Fix printing --starter.instance-up-timeout instead of hardcoded value (#361)
1 parent 37a0ace commit 3c43ab8

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# ArangoDB Starter Changelog
22

33
## [master](https://github.com/arangodb-helper/arangodb/tree/master) (N/A)
4+
- Fix printing --starter.instance-up-timeout instead of hardcoded value
45
- Fix context handling in WaitUntilStarterReady for tests
56

67
## [0.15.8](https://github.com/arangodb-helper/arangodb/tree/0.15.8) (2023-06-02)

service/process_wrapper.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ func (p *processWrapper) run(startedCh chan<- struct{}) {
221221
}
222222
}
223223
} else if !up {
224-
logProcess.Warn().Msgf("%s not ready after 5min!: Status trail: %#v", p.serverType, statusTrail)
224+
logProcess.Warn().Msgf("%s not ready after %s! Status trail: %#v", p.config.InstanceUpTimeout, p.serverType, statusTrail)
225225
} else if !correctRole {
226226
expectedRole, expectedMode := p.serverType.ExpectedServerRole()
227227
logProcess.Warn().Msgf("%s does not have the expected role of '%s,%s' (but '%s,%s'): Status trail: %#v", p.serverType, expectedRole, expectedMode, role, mode, statusTrail)

0 commit comments

Comments
 (0)