Skip to content

Commit

Permalink
queue: fix log message missing hostname of target server
Browse files Browse the repository at this point in the history
  • Loading branch information
foxcpp committed Mar 30, 2019
1 parent f4d437c commit 824fbdc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion queue.go
Expand Up @@ -292,7 +292,7 @@ func (q *Queue) attemptDelivery(meta *QueueMetadata, body io.ReadSeeker) (should
usedHost = host
break
} else {
log.Printf("queue %s: sending %v to %s: %v", q.name, meta.UUID, usedHost, err)
log.Printf("queue %s: sending %v to %s: %v", q.name, meta.UUID, host, err)
if isTemporaryErr(err) {
temporaryConnErr = true
}
Expand Down

0 comments on commit 824fbdc

Please sign in to comment.