Skip to content

Commit 5bfbc52

Browse files
committed
server: don't wait for GC to finish
1 parent dc7f456 commit 5bfbc52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/playground/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ func start(goRoot string, args appArgs) error {
9191

9292
ctx, _ := app.GetApplicationContext()
9393
wg := &sync.WaitGroup{}
94-
go store.StartCleaner(ctx, cleanInterval, wg)
94+
go store.StartCleaner(ctx, cleanInterval, nil)
9595

9696
r := mux.NewRouter()
9797
langserver.New(packages, compiler.NewBuildService(zap.S(), store)).

0 commit comments

Comments
 (0)