Skip to content

Commit 80cee7c

Browse files
authored
[Bugfix] Patch typo in error msg - process_wrapper.go (#292)
When starting ArangoDB starter, the log prints: `Your syncmaster can now available at `https://<node>:<port>` component=arangodb pid=<pid> type=syncmaster` This should be printing: `Your syncmaster is now available at `https://<node>:<port>` component=arangodb pid=<pid> type=syncmaster`
1 parent 9362100 commit 80cee7c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

service/process_wrapper.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ func (p *processWrapper) run(startedCh chan<- struct{}) {
207207
} else {
208208
ip := p.myPeer.Address
209209
p.s.logMutex.Lock()
210-
logProcess.Info().Msgf("Your syncmaster can now available at `https://%s:%d`", ip, hostPort)
210+
logProcess.Info().Msgf("Your syncmaster is now available at `https://%s:%d`", ip, hostPort)
211211
p.s.logMutex.Unlock()
212212
}
213213
}

0 commit comments

Comments
 (0)