Skip to content

Commit

Permalink
CASE resumption storage: fix remaining erroneous logging (#18921)
Browse files Browse the repository at this point in the history
  • Loading branch information
bluebin14 authored May 30, 2022
1 parent 1eb0921 commit e1c9658
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ CHIP_ERROR DefaultSessionResumptionStorage::Delete(const ScopedNodeId & node)
if (err == CHIP_NO_ERROR)
{
err = DeleteLink(resumptionId);
if (err != CHIP_NO_ERROR)
if (err != CHIP_NO_ERROR && err != CHIP_ERROR_PERSISTED_STORAGE_VALUE_NOT_FOUND)
{
ChipLogError(SecureChannel,
"Unable to delete session resumption link for node " ChipLogFormatX64 ": %" CHIP_ERROR_FORMAT,
Expand Down

0 comments on commit e1c9658

Please sign in to comment.