Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,14 @@ export class GroupKeyManagementServer extends GroupKeyManagementBase {
if (this.state.groupKeyMap.length) {
this.#updateGroupKeyMap(this.state.groupKeyMap);
}
if (this.state.groupTable.length) {
// Restore the runtime endpoint map, which group command dispatch expands over
for (const { fabricIndex, groupId, endpoints } of this.state.groupTable) {
Comment thread
Apollon77 marked this conversation as resolved.
if (fabrics.has(fabricIndex)) {
fabrics.for(fabricIndex).groups.endpoints.set(groupId, [...endpoints]);
Comment thread
Apollon77 marked this conversation as resolved.
}
}
}
}

/** Handle the recreation (update) of a fabric, so we need to reinitialize the group key sets */
Expand Down
Loading