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

[Bugfix] Fix ErrorArray String function (#1198)

This commit is contained in:
Adam Janikowski 2022-11-28 15:54:21 +01:00 committed by GitHub
parent 0d2ffe0204
commit a6c4fc609b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -32,6 +32,7 @@
- (Improvement) Multi-arch support for ID member
- (Feature) Allow to change Pod Network and PID settings
- (Feature) Pre OOM Abort function
- (Bugfix) Fix ErrorArray String function
## [1.2.20](https://github.com/arangodb/kube-arangodb/tree/1.2.20) (2022-10-25)
- (Feature) Add action progress

View file

@ -31,7 +31,7 @@ func (a Array) Error() string {
q := make([]string, len(a))
for id := range a {
q[id] = a.Error()
q[id] = a[id].Error()
}
return fmt.Sprintf("Received %d errors: %s", len(q), strings.Join(q, ", "))