We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 206ca2d commit 7eee83dCopy full SHA for 7eee83d
packages/protocol/src/protocol/ExchangeManager.ts
@@ -277,9 +277,8 @@ export class ExchangeManager {
277
} else {
278
if (this.#isClosing) return;
279
if (session.isClosing) {
280
- throw new MatterFlowError(
281
- `Declining new exchange because session ${Session.idStrOf(packet)} is closing`,
282
- );
+ logger.debug(`Declining new exchange because session ${Session.idStrOf(packet)} is closing`);
+ return;
283
}
284
285
const protocolHandler = this.#protocols.get(message.payloadHeader.protocolId);
0 commit comments