diff --git a/protocol/handler.go b/protocol/handler.go index d79bc87..051af35 100644 --- a/protocol/handler.go +++ b/protocol/handler.go @@ -77,7 +77,7 @@ func (rh *RespHandler) Handle(pld *payload.Payload, jb jobs.Job) error { } return nil default: - rh.log.Warn("unknown response type, acknowledging the JOB", zap.Uint32("type", p.T)) + rh.log.Warn("unknown response type, acknowledging the JOB", zap.Uint32("type", uint32(p.T))) err = jb.Ack() if err != nil { return errors.E(op, err)