Kong/insomnia · error
${errorMsg}
Error message
${errorMsg} What it means
Error "${errorMsg}" thrown in Kong/insomnia.
Source
Thrown at packages/insomnia-vcs/src/vcs.ts:541
return {
upsert: await this._getBlobs(upsert.map(e => e.blob)),
remove: await this._getBlobs(remove.map(e => e.blob)),
};
}
// rename preMergeCheck to instance getCandidateStatus
async handleAnyConflicts(
conflicts: MergeConflict[],
labels: { ours: string; theirs: string },
errorMsg: string,
): Promise<MergeConflict[]> {
if (conflicts.length === 0) {
return conflicts;
}
if (!this._conflictHandler) {
throw new Error(errorMsg);
}
return this._conflictHandler(conflicts, labels);
}
async allDocuments(): Promise<Record<string, any>> {
const branch = await this._getCurrentBranch();
const snapshot: Snapshot | null = await this._getLatestSnapshot(branch.name);
if (!snapshot) {
throw new Error('Failed to get latest commit for all documents');
}
return this._getBlobs(snapshot.state.map(s => s.blob));
}
async rollbackToLatest(candidates: StatusCandidate[]) {
const branch = await this._getCurrentBranch();
const latestSnapshot = await this._getLatestSnapshot(branch.name);View on GitHub (pinned to d9bb2b0142)
When it happens
Trigger: Thrown at packages/insomnia-vcs/src/vcs.ts:541 when the library encounters an invalid state.
Common situations: See trigger scenarios.
AI-assisted analysis of Kong/insomnia@d9bb2b0142 (2026-08-26).
Data as JSON: /api/errors/e696fc6e58db0dc5.
Report an issue: GitHub.