Skip to content
This repository has been archived by the owner on May 17, 2021. It is now read-only.

Commit

Permalink
Merge pull request #1454 from cdjackson/zwave-wakeup-queue
Browse files Browse the repository at this point in the history
Zwave wakeup queue
  • Loading branch information
teichsta committed Sep 22, 2014
2 parents d85ef4d + 970ef9e commit affdf50
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -240,8 +240,8 @@ public boolean processOutgoingWakeupMessage(SerialMessage serialMessage) {
return false;
}
if (this.wakeUpQueue.contains(serialMessage)) {
logger.debug("NODE {}: Message already on the wake-up queue. Discarding.", this.getNode().getNodeId());
return false;
logger.debug("NODE {}: Message already on the wake-up queue. Removing original.", this.getNode().getNodeId());
this.wakeUpQueue.remove(serialMessage);
}

logger.debug("NODE {}: Putting message in wakeup queue.", this.getNode().getNodeId());
Expand Down

0 comments on commit affdf50

Please sign in to comment.