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:
parent
0d2ffe0204
commit
a6c4fc609b
2 changed files with 2 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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, ", "))
|
||||
|
|
Loading…
Reference in a new issue