summaryrefslogtreecommitdiff
path: root/internal/mapr/groupset.go
diff options
context:
space:
mode:
authorPaul Bütow <pbuetow@mimecast.com>2020-01-26 11:26:53 +0000
committerPaul Bütow <pbuetow@mimecast.com>2020-02-07 13:31:15 +0000
commit0945da8dfefcbb723eecea0e5f4eafff63398253 (patch)
treef06dab4d2bf21d25d176b23d5baeca588d27f5d7 /internal/mapr/groupset.go
parent2a8e5de265a0e0a31a5834909d6879f5c9941467 (diff)
Introduce drun command, refactor code to use context package
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)
}
}