Compare commits
No commits in common. "aee1c25f54d1cd94d1caef309236faeae666ae32" and "a6c94ac7ca8144db894d83d29fd1aa2ba0341a88" have entirely different histories.
aee1c25f54
...
a6c94ac7ca
6
main.go
6
main.go
@ -175,9 +175,10 @@ func main() { // {{{
|
|||||||
} // }}}
|
} // }}}
|
||||||
func scheduleHandler() { // {{{
|
func scheduleHandler() { // {{{
|
||||||
// Wait for the approximate minute.
|
// Wait for the approximate minute.
|
||||||
wait := 60000 - time.Now().Sub(time.Now().Truncate(time.Minute)).Milliseconds()
|
//wait := 60000 - time.Now().Sub(time.Now().Truncate(time.Minute)).Milliseconds()
|
||||||
time.Sleep(time.Millisecond * time.Duration(wait))
|
//time.Sleep(time.Millisecond * time.Duration(wait))
|
||||||
tick := time.NewTicker(time.Minute)
|
tick := time.NewTicker(time.Minute)
|
||||||
|
tick = time.NewTicker(time.Second*5)
|
||||||
for {
|
for {
|
||||||
<-tick.C
|
<-tick.C
|
||||||
for _, event := range ExpiredSchedules() {
|
for _, event := range ExpiredSchedules() {
|
||||||
@ -760,6 +761,7 @@ func keyCounter(w http.ResponseWriter, r *http.Request, sess *session.T) { // {{
|
|||||||
})
|
})
|
||||||
} // }}}
|
} // }}}
|
||||||
|
|
||||||
|
|
||||||
func notificationAcknowledge(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")
|
logger.Info("webserver", "request", "/notification/ack")
|
||||||
var err error
|
var err error
|
||||||
|
@ -44,7 +44,6 @@ func (nm *Manager) AddService(userID int, service Service) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (nm *Manager) Send(userID int, uuid string, msg []byte) (err error) {
|
func (nm *Manager) Send(userID int, uuid string, msg []byte) (err error) {
|
||||||
|
|
||||||
services, found := nm.services[userID]
|
services, found := nm.services[userID]
|
||||||
if !found {
|
if !found {
|
||||||
return werr.New("No notification services defined for user ID %d", userID).WithCode("002-0008")
|
return werr.New("No notification services defined for user ID %d", userID).WithCode("002-0008")
|
||||||
|
Loading…
Reference in New Issue
Block a user