You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 11, 2024. It is now read-only.
The fix implemented in #560 could break graceful shutdowns. We need to account for the fact that the context could be canceled before the app is actually started. So something like this:
select {
case <-app.ctx.Done():
return nil, context.Canceled
case <-app.started:
// continue as normal...
}
The fix implemented in #560 could break graceful shutdowns. We need to account for the fact that the context could be canceled before the app is actually started. So something like this:
See also #161
The text was updated successfully, but these errors were encountered: