multica-ai/multica · error · ErrChatSessionAlreadyStarted
chat session already has a user message
Error message
chat session already has a user message
What it means
Error "chat session already has a user message" thrown in multica-ai/multica.
Source
Thrown at server/internal/service/task.go:1884
"issue_id", util.UUIDToString(task.IssueID),
"agent_id", util.UUIDToString(task.AgentID),
)
s.broadcastTaskEvent(ctx, protocol.EventTaskQueued, task)
s.NotifyTaskEnqueued(ctx, task)
return nil
}
// DirectChatSendResult carries the rows a transactional direct-chat send
// persisted, so the handler can broadcast the user message and shape its
// response without re-reading them.
type DirectChatSendResult struct {
Task db.AgentTaskQueue
Message db.ChatMessage
BoundAttachmentIDs []pgtype.UUID
Queued bool
}
var ErrChatSessionAlreadyStarted = errors.New("chat session already has a user message")
// SendDirectChatMessage atomically persists one web/mobile direct-chat turn:
// the owning task (which claims its own input batch via chat_input_task_id), the
// user message bound to that task, any attachment bindings, and the session
// touch all commit together (MUL-4351). The daemon is only notified after the
// commit, so it can never observe a message without a task or a task without its
// input owner — and a later claim reads exactly this task's user messages
// instead of scanning trailing history.
//
// The caller must have already gated the session and preflighted the agent
// (archived / no-runtime), passing the loaded agent in. Those checks are repeated
// under the transaction locks below because either row may change before enqueue.
func (s *TaskService) SendDirectChatMessage(
ctx context.Context,
session db.ChatSession,
agent db.Agent,
initiatorUserID pgtype.UUID,
content string,View on GitHub (pinned to 2c0912b6ec)
Solutions
- The chat session already has a user message; continue the existing session or create a new one.
When it happens
Trigger: Thrown at server/internal/service/task.go:1884 when the library encounters an invalid state.
Common situations: See trigger scenarios.
AI-assisted analysis of multica-ai/multica@2c0912b6ec (2026-08-15).
Data as JSON: /api/errors/4cd185c4e99e1dfb.
Report an issue: GitHub.