Skip to content

Commit 2715fba

Browse files
yaananthcschleiden
andauthored
feedback
Co-authored-by: Christopher Schleiden <[email protected]>
1 parent 274fa65 commit 2715fba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/redis/queue.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ func newTaskQueue[T any](rdb redis.UniversalClient, tasktype string) (*taskQueue
5959
}
6060

6161
// Create the consumer group
62-
_, err := createGroupCmd.Run(context.Background(), rdb, []string{tq.streamKey, tq.groupName}).Result()
62+
err := createGroupCmd.Run(context.Background(), rdb, []string{tq.streamKey, tq.groupName}).Err()
6363
if err != nil {
6464
return nil, fmt.Errorf("creating task queue: %w", err)
6565
}

0 commit comments

Comments
 (0)