Skip to content

fix(core): guard against null event.seq when inserting session_messages#31419

Open
Cain-Brouwer wants to merge 1 commit into
anomalyco:devfrom
Cain-Brouwer:fix/agent-switch-null-seq
Open

fix(core): guard against null event.seq when inserting session_messages#31419
Cain-Brouwer wants to merge 1 commit into
anomalyco:devfrom
Cain-Brouwer:fix/agent-switch-null-seq

Conversation

@Cain-Brouwer

@Cain-Brouwer Cain-Brouwer commented Jun 8, 2026

Copy link
Copy Markdown

Issue for this PR

Closes #31204

Type of change

  • Bug fix

What does this PR do?

When switching from plan to build agent the db throws NOT NULL constraint failed: session_message.seq because event.seq is null but the check only catches undefined. Changed all === undefined checks on event.seq to == null.

How did you verify your code works?

Ran bun test in packages/core — all existing tests pass.

Checklist

  • I have tested my changes locally
  • I have not included unrelated changes in this PR

The NOT NULL constraint on session_message.seq could be violated when
event.seq is null instead of undefined. All projectors and message
inserters checked event.seq === undefined, which only guards against
undefined — null passed through and caused a SQLite constraint failure:

  NOT NULL constraint failed: session_message.seq

This occurred during session.next.agent.switched handling, preventing
the build agent from responding after switching from plan mode.

Change all event.seq === undefined checks to event.seq == null to
catch both null and undefined values.
@github-actions github-actions Bot added needs:compliance This means the issue will auto-close after 2 hours. and removed needs:compliance This means the issue will auto-close after 2 hours. labels Jun 8, 2026
@github-actions

github-actions Bot commented Jun 8, 2026

Copy link
Copy Markdown
Contributor

Thanks for updating your PR! It now meets our contributing guidelines. 👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

BUG: session_message.seq NOT NULL constraint failed on agent-switched sessions

1 participant