1
0
Fork 0
mirror of https://github.com/arangodb/kube-arangodb.git synced 2024-12-14 11:57:37 +00:00

[Bugfix] Move Agency CommitIndex log message to Trace (#1177)

This commit is contained in:
Adam Janikowski 2022-11-08 10:35:32 +01:00 committed by GitHub
parent 9235014796
commit 2d005bf18c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View file

@ -17,6 +17,7 @@
- (Improvement) ArangoDB image validation (=>3.10) for ARM64 architecture
- (Improvement) Use inspector for ArangoMember
- (DebugPackage) Collect logs from pods
- (Bugfix) Move Agency CommitIndex log message to Trace
## [1.2.20](https://github.com/arangodb/kube-arangodb/tree/1.2.20) (2022-10-25)
- (Feature) Add action progress

View file

@ -336,12 +336,14 @@ func (c *cache) getLeader(ctx context.Context, size int, clients map[string]agen
}
}
}
if err := h.Serving(); err != nil {
c.log.Err(err).Warn("Agency Not serving")
return nil, nil, h, err
}
if err := h.Healthy(); err != nil {
c.log.Err(err).Debug("Agency Not healthy")
c.log.Err(err).Trace("Agency Not healthy")
}
for id := range names {