Compare commits

..

No commits in common. "eea0b1c0f605fac368a190ef216ad87956041be5" and "6782362af1eb81060107ce4f05ab2f25c2377ccc" have entirely different histories.

2 changed files with 3 additions and 5 deletions

View File

@ -176,10 +176,10 @@ func main() { // {{{
func scheduleHandler() { // {{{
// Wait for the approximate minute.
wait := 60000 - time.Now().Sub(time.Now().Truncate(time.Minute)).Milliseconds()
logger.Info("schedule", "wait", wait/1000)
time.Sleep(time.Millisecond * time.Duration(wait))
tick := time.NewTicker(time.Minute)
for {
<-tick.C
for _, event := range ExpiredSchedules() {
notificationManager.Send(
event.UserID,
@ -193,7 +193,6 @@ func scheduleHandler() { // {{{
),
)
}
<-tick.C
}
} // }}}
@ -765,7 +764,7 @@ 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
w.Header().Add("Access-Control-Allow-Origin", "*")
err = AcknowledgeNotification(r.URL.Query().Get("uuid"))
if err != nil {
@ -777,5 +776,4 @@ func notificationAcknowledge(w http.ResponseWriter, r *http.Request, sess *sessi
"OK": true,
})
} // }}}
// vim: foldmethod=marker

View File

@ -1 +1 @@
v26
v25