Skip to content

Commit 22e3a3b

Browse files
author
Meir Shpilraien (Spielrein)
authored
Merge pull request #5 from manueljgarciar/bug_aggregate_function
Aggregate function didn't work
2 parents 599d2a7 + 8385bf0 commit 22e3a3b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gearsclient/redisgears_builder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ def distinct(self):
220220
return self
221221

222222
def aggregate(self, zero, seqOp, combOp):
223-
self.pipe.countby(callback)
223+
self.pipe.aggregate(zero, seqOp, combOp)
224224
return self
225225

226226
def aggregateby(self, extractor, zero, seqOp, combOp):

0 commit comments

Comments
 (0)