This commit is contained in:
Feng 2015-11-06 12:30:07 +08:00
parent 35fa626ff1
commit d227ba3ced
1 changed files with 1 additions and 1 deletions

View File

@ -425,7 +425,7 @@ handle_cast({puback, PktId}, Session = #session{awaiting_ack = AwaitingAck}) ->
cancel_timer(TRef), cancel_timer(TRef),
noreply(dequeue(acked(PktId, Session))); noreply(dequeue(acked(PktId, Session)));
error -> error ->
?LOG(error, "Cannot find PUBACK: ~p", [PktId], Session), ?LOG(warning, "Cannot find PUBACK: ~p", [PktId], Session),
noreply(Session) noreply(Session)
end; end;