File tree Expand file tree Collapse file tree 2 files changed +14
-4
lines changed
packages/ocap-kernel/src/remotes Expand file tree Collapse file tree 2 files changed +14
-4
lines changed Original file line number Diff line number Diff line change @@ -805,6 +805,16 @@ export async function initNetwork(
805805 // Re-fetch queue in case cleanupStalePeers deleted it during the await
806806 const currentQueue = getMessageQueue ( targetPeerId ) ;
807807 currentQueue . enqueue ( message ) ;
808+
809+ // If a new channel is active (stale channel was replaced by inbound connection),
810+ // flush the queue on it to prevent messages from being stuck indefinitely
811+ const newChannel = channels . get ( targetPeerId ) ;
812+ if ( newChannel && newChannel !== channel ) {
813+ logger . log (
814+ `${ targetPeerId } :: stale channel replaced, flushing queue on new channel` ,
815+ ) ;
816+ await flushQueuedMessages ( targetPeerId , newChannel , currentQueue ) ;
817+ }
808818 }
809819 }
810820
Original file line number Diff line number Diff line change @@ -130,7 +130,7 @@ export default defineConfig({
130130 'packages/kernel-ui/**' : {
131131 statements : 97.57 ,
132132 functions : 97.29 ,
133- branches : 93.26 ,
133+ branches : 93.25 ,
134134 lines : 97.57 ,
135135 } ,
136136 'packages/kernel-utils/**' : {
@@ -158,10 +158,10 @@ export default defineConfig({
158158 lines : 22.22 ,
159159 } ,
160160 'packages/ocap-kernel/**' : {
161- statements : 95.66 ,
161+ statements : 95.58 ,
162162 functions : 98.56 ,
163- branches : 96.64 ,
164- lines : 95.66 ,
163+ branches : 96.5 ,
164+ lines : 95.58 ,
165165 } ,
166166 'packages/omnium-gatherum/**' : {
167167 statements : 5.67 ,
You can’t perform that action at this time.
0 commit comments