{"record":{"id":"dcbb384fb7a22652","repo":"deepseek-ai/deepseek-harness","slug":"message-feedback-durable-domain-is-not-initialize","errorCode":null,"errorMessage":"message-feedback: durable domain is not initialized","messagePattern":"message-feedback: durable domain is not initialized","errorType":"exception","errorClass":"Error","httpStatus":null,"severity":"error","filePath":"packages/feedback/message-feedback/src/index.ts","lineNumber":377,"sourceCode":"\n  /** Queue a complete read/compare/write mutation behind this Session's prior mutation. */\n  private enqueue<T>(sessionId: SessionId, operation: () => Promise<T>): Promise<T> {\n    if (!this.mutationAdmissionOpen) {\n      return Promise.reject(new Error('message-feedback: service is disposing'))\n    }\n    const previous = this.operationTails.get(sessionId) ?? Promise.resolve()\n    const result = previous.then(operation)\n    const tail = result.then(() => undefined, () => undefined)\n    this.operationTails.set(sessionId, tail)\n    return result.finally(() => {\n      if (this.operationTails.get(sessionId) === tail) this.operationTails.delete(sessionId)\n    })\n  }\n\n  /** Resolve the initialized durable table or fail a broken service lifecycle. */\n  private requireTable(): KvTable<SessionId, MessageFeedbackRow> {\n    if (this.table === undefined) {\n      throw new Error('message-feedback: durable domain is not initialized')\n    }\n    return this.table\n  }\n}\n\nexport default MessageFeedbackService\n","sourceCodeStart":359,"sourceCodeEnd":384,"githubUrl":"https://github.com/deepseek-ai/deepseek-harness/blob/b150a551b8d465e31e418e1b2eaf5e79bbb7d28e/packages/feedback/message-feedback/src/index.ts#L359-L384","documentation":"Error \"message-feedback: durable domain is not initialized\" thrown in deepseek-ai/deepseek-harness.","triggerScenarios":"Thrown at packages/feedback/message-feedback/src/index.ts:377 when the library encounters an invalid state.","commonSituations":"See trigger scenarios.","solutions":[],"exampleFix":null,"handlingStrategy":null,"validationCode":null,"typeGuard":null,"tryCatchPattern":null,"preventionTips":[],"tags":[],"backgroundTag":null,"analyzedSha":"b150a551b8d465e31e418e1b2eaf5e79bbb7d28e","analyzedAt":"2026-08-24T18:12:29.105Z","schemaVersion":2},"datasetVersion":"2026-08-24T22:17:12.610Z"}