engine: resource: gzip: Remove unneeded waitgroup
I think this was a copy+pasta mistake.
This commit is contained in:
@@ -39,7 +39,6 @@ import (
|
|||||||
"os"
|
"os"
|
||||||
"path"
|
"path"
|
||||||
"strings"
|
"strings"
|
||||||
"sync"
|
|
||||||
|
|
||||||
"github.com/purpleidea/mgmt/engine"
|
"github.com/purpleidea/mgmt/engine"
|
||||||
"github.com/purpleidea/mgmt/engine/traits"
|
"github.com/purpleidea/mgmt/engine/traits"
|
||||||
@@ -223,9 +222,6 @@ func (obj *GzipRes) Cleanup() error {
|
|||||||
|
|
||||||
// Watch is the primary listener for this resource and it outputs events.
|
// Watch is the primary listener for this resource and it outputs events.
|
||||||
func (obj *GzipRes) Watch(ctx context.Context) error {
|
func (obj *GzipRes) Watch(ctx context.Context) error {
|
||||||
wg := &sync.WaitGroup{}
|
|
||||||
defer wg.Wait()
|
|
||||||
|
|
||||||
recurse := false // single file
|
recurse := false // single file
|
||||||
|
|
||||||
recWatcher, err := recwatch.NewRecWatcher(obj.getPath(), recurse)
|
recWatcher, err := recwatch.NewRecWatcher(obj.getPath(), recurse)
|
||||||
|
|||||||
Reference in New Issue
Block a user