Skip to content

Commit

Permalink
fix: ensure that we wrap pegasusConnectionsAdmin with E (#8526)
Browse files Browse the repository at this point in the history
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
  • Loading branch information
iomekam and mergify[bot] authored Nov 17, 2023
1 parent c14f1bb commit 0f42fb6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/pegasus/src/proposals/core-proposal.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,10 @@ export const addPegasusTransferPort = async (
const { localAddr, actions } = connectionState;
if (actions) {
// We're open and ready for business.
pegasusConnectionsAdmin.update(localAddr, connectionState);
void E(pegasusConnectionsAdmin).update(localAddr, connectionState);
} else {
// We're closed.
pegasusConnectionsAdmin.delete(localAddr);
void E(pegasusConnectionsAdmin).delete(localAddr);
}
},
});
Expand Down

0 comments on commit 0f42fb6

Please sign in to comment.