mirror of
https://github.com/multica-ai/multica.git
synced 2026-07-23 10:08:38 +02:00
- Multi-select UI for batch importing skills from a local runtime - Server batch-dispatches up to 10 import requests per heartbeat cycle - WS heartbeat now reads supports_batch_import from daemon payload instead of hardcoding true, so old daemons correctly fall back to one-at-a-time dispatch - Raised server pending timeout to 3min and client poll timeout to 4min to accommodate daemons that pop only one import per 15s heartbeat Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
4 lines
137 B
TypeScript
4 lines
137 B
TypeScript
export function isNameConflictError(msg: string): boolean {
|
|
return /\b(409|conflict|already exists|unique constraint)\b/i.test(msg);
|
|
}
|