summaryrefslogtreecommitdiff
path: root/internal/mapr/groupset.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/mapr/groupset.go')
-rw-r--r--internal/mapr/groupset.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/internal/mapr/groupset.go b/internal/mapr/groupset.go
index d8f9379..e9e0d37 100644
--- a/internal/mapr/groupset.go
+++ b/internal/mapr/groupset.go
@@ -1,6 +1,7 @@
package mapr
import (
+ "context"
"errors"
"fmt"
"io/ioutil"
@@ -46,9 +47,9 @@ func (g *GroupSet) GetSet(groupKey string) *AggregateSet {
}
// Serialize the group set (e.g. to send it over the wire).
-func (g *GroupSet) Serialize(ch chan<- string, stop chan struct{}) {
+func (g *GroupSet) Serialize(ctx context.Context, ch chan<- string) {
for groupKey, set := range g.sets {
- set.Serialize(groupKey, ch, stop)
+ set.Serialize(ctx, groupKey, ch)
}
}