1230
const state = this._changesets.get(key);
1231
if (!state) {
1233
>
// Routing the action to subscribers (Issue 1) makes
1234
>
// orphan envelopes client-visible, so we must drop them
1235
>
// here rather than letting them advance `_serverSeq`.
1236
>
this._logService.warn(`[AgentHostStateManager] Action for unknown changeset: ${key}, type=${action.type}`);
1237
>
return undefined;
1238
>
}
1239
const newState = changesetReducer(state, changesetAction, this._log);
1240
if (newState !== state) {