Skip to content

Commit

Permalink
Ready to release.
Browse files Browse the repository at this point in the history
  • Loading branch information
monnand committed Jul 19, 2013
1 parent e3399aa commit e6525db
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import (
var uniqushPushConfFlags = flag.String("config", "/etc/uniqush/uniqush-push.conf", "Config file path")
var uniqushPushShowVersionFlag = flag.Bool("version", false, "Version info")

var uniqushPushVersion = "uniqush-push 1.4.4a3"
var uniqushPushVersion = "uniqush-push 1.4.4"

func installPushSrvices() {
InstallGCM()
Expand Down
6 changes: 4 additions & 2 deletions srv/apns.go
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,8 @@ receiving_APNS_status:

func (self *apnsPushService) Push(psp *PushServiceProvider, dpQueue <-chan *DeliveryPoint, resQueue chan<- *PushResult, notif *Notification) {
defer close(resQueue)
self.updateCheckPoint("")
// Profiling
// self.updateCheckPoint("")
var err error
req := new(pushRequest)
req.psp = psp
Expand Down Expand Up @@ -308,7 +309,8 @@ func (self *apnsPushService) Push(psp *PushServiceProvider, dpQueue <-chan *Deli
res.Err = err
resQueue <- res
}
self.updateCheckPoint("sending the message takes")
// Profiling
// self.updateCheckPoint("sending the message takes")
if err != nil {
return
}
Expand Down

0 comments on commit e6525db

Please sign in to comment.