21
0
Fork 0

v0.0.442
Build Docker and Deploy / Run goext test-suite (push) Successful in 2m0s Details

This commit is contained in:
Mike Schwörer 2024-04-29 17:24:10 +02:00
parent 7bda674939
commit 303bd04649
Signed by: Mikescher
GPG Key ID: D3C7172E0A70F8CF
2 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
package goext
const GoextVersion = "0.0.441"
const GoextVersion = "0.0.442"
const GoextVersionTimestamp = "2024-04-29T17:19:55+0200"
const GoextVersionTimestamp = "2024-04-29T17:24:10+0200"

View File

@ -168,7 +168,7 @@ func (c *Coll[TData]) ListAllIDs(ctx context.Context, filter ct.RawFilter) ([]st
var res []idObject
err = cursorList.All(ctx, res)
err = cursorList.All(ctx, &res)
if err != nil {
return nil, exerr.Wrap(err, "failed to decode entities").Any("pipeline", pipelineList).Str("collection", c.Name()).Build()
}