Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion cmd/state-svc/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,10 @@ func main() {
}

if err := events.WaitForEvents(5*time.Second, rollbar.Wait, authentication.LegacyClose, logging.Close); err != nil {
fmt.Fprintf(os.Stderr, "Warning: failed to wait for events")
// Note: logger is closed, so cannot log here. Also, the activate integration tests seem to be
// affected by a write to os.Stderr. Regardless, since state-svc runs in the background for
// the most part, we realistically will not see this error.
//fmt.Fprintf(os.Stderr, "Warning: failed to wait for events")
}
os.Exit(exitCode)
}()
Expand Down
Loading