Skip to content

Commit

Permalink
Increase timeout in wakeup
Browse files Browse the repository at this point in the history
  • Loading branch information
zachhuff386 committed Aug 2, 2015
1 parent 7b8210c commit b91f8b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion service/handlers/wakeup.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ func wakeupGet(c *gin.Context) {
}
evt.Init()

for i := 0; i < 6; i++ {
for i := 0; i < 8; i++ {
time.Sleep(50 * time.Millisecond)
if time.Since(event.LastAwake) < 200*time.Millisecond {
c.String(200, "")
Expand Down

0 comments on commit b91f8b4

Please sign in to comment.