Restore minute-based schedule

This commit is contained in:
Magnus Åhall 2024-03-29 20:54:42 +01:00
parent a6c94ac7ca
commit 7de9feea58
2 changed files with 3 additions and 4 deletions

View File

@ -175,10 +175,9 @@ func main() { // {{{
} // }}}
func scheduleHandler() { // {{{
// Wait for the approximate minute.
//wait := 60000 - time.Now().Sub(time.Now().Truncate(time.Minute)).Milliseconds()
//time.Sleep(time.Millisecond * time.Duration(wait))
wait := 60000 - time.Now().Sub(time.Now().Truncate(time.Minute)).Milliseconds()
time.Sleep(time.Millisecond * time.Duration(wait))
tick := time.NewTicker(time.Minute)
tick = time.NewTicker(time.Second*5)
for {
<-tick.C
for _, event := range ExpiredSchedules() {
@ -761,7 +760,6 @@ func keyCounter(w http.ResponseWriter, r *http.Request, sess *session.T) { // {{
})
} // }}}
func notificationAcknowledge(w http.ResponseWriter, r *http.Request, sess *session.T) { // {{{
logger.Info("webserver", "request", "/notification/ack")
var err error

View File

@ -44,6 +44,7 @@ func (nm *Manager) AddService(userID int, service Service) {
}
func (nm *Manager) Send(userID int, uuid string, msg []byte) (err error) {
services, found := nm.services[userID]
if !found {
return werr.New("No notification services defined for user ID %d", userID).WithCode("002-0008")