We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 63a3800 + 6d6cb80 commit 02c4ef4Copy full SHA for 02c4ef4
pkg/internal/controller/controller.go
@@ -173,7 +173,7 @@ func (c *Controller[request]) Start(ctx context.Context) error {
173
// NB(directxman12): launch the sources *before* trying to wait for the
174
// caches to sync so that they have a chance to register their intendeded
175
// caches.
176
- errGroup, _ := errgroup.WithContext(ctx)
+ errGroup := &errgroup.Group{}
177
for _, watch := range c.startWatches {
178
log := c.LogConstructor(nil).WithValues("source", fmt.Sprintf("%s", watch))
179
didStartSyncingSource := &atomic.Bool{}
0 commit comments