Fix server error message, go fmt

This commit is contained in:
2013-03-18 07:17:44 -04:00
parent ad8156210f
commit 3a166dbc9a
4 changed files with 15 additions and 8 deletions

View File

@ -42,7 +42,7 @@ func addPoller(uid string, channel *chan *asink.Event) {
}
//set timer to call function after one minute
timeout := time.Duration(1)*time.Minute
timeout := time.Duration(1) * time.Minute
time.AfterFunc(timeout, func() {
group.lock.Lock()
for i, c := range group.channels {