don't fail app on failed notify init

This commit is contained in:
Umputun
2018-10-25 13:21:07 -05:00
parent f08144d19e
commit 928f483021
+1 -1
View File
@@ -228,7 +228,7 @@ func (s *ServerCommand) newServerApp() (*serverApp, error) {
notifyService, err := s.makeNotify(dataService)
if err != nil {
return nil, errors.Wrap(err, "failed to make notify service")
log.Printf("[WARN] failed to make notify service, %s", err)
}
authProviders := s.makeAuthProviders(jwtService, avatarProxy, dataService)