Skip to content

Commit 772d596

Browse files
committed
fix: ignore error explicitly
1 parent 24eddfb commit 772d596

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

cmd/daemon/serve.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -296,8 +296,9 @@ func bgTasks(d driver.Registry, cmd *cobra.Command, args []string, slOpts *servi
296296
ctx := modifiers.ctx
297297

298298
if d.Config().IsBackgroundCourierEnabled(ctx) {
299-
go courier.Watch(ctx, d)
299+
return courier.Watch(ctx, d)
300300
}
301+
301302
return nil
302303
}
303304

0 commit comments

Comments
 (0)