1
0
mirror of https://github.com/rancher/norman.git synced 2025-09-01 23:36:58 +00:00

Fix startup issues

This commit is contained in:
Darren Shepherd
2017-11-28 18:24:53 -07:00
parent 391a96f33d
commit 247d4fe74b
3 changed files with 5 additions and 4 deletions

View File

@@ -12,7 +12,7 @@ type Starter interface {
}
func Sync(ctx context.Context, starters ...Starter) error {
eg, ctx := errgroup.WithContext(ctx)
eg, _ := errgroup.WithContext(ctx)
for _, starter := range starters {
func(starter Starter) {
eg.Go(func() error {