Skip to content

Commit

Permalink
fix: don't verify delivery of S2 frames in link reliability check
Browse files Browse the repository at this point in the history
  • Loading branch information
AlCalzone committed Jul 19, 2024
1 parent b2a7ccd commit 8dff84c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/zwave-js/src/lib/node/Node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7299,6 +7299,8 @@ ${formatRouteHealthCheckSummary(this.id, otherNode.id, summary)}`,
// Avoid using explorer frames, because they can create a ton of delay
transmitOptions: TransmitOptions.ACK
| TransmitOptions.AutoRoute,
// Do not wait for SOS NonceReports, as it slows down the test
s2VerifyDelivery: false,
// And remember the transmit report, so we can evaluate it
onTXReport: (report) => {
txReport = report;
Expand Down

0 comments on commit 8dff84c

Please sign in to comment.