Commit 2e6ffc1
fix(submitter): submit_batch/2 crashed on every call (MatchError)
handle_call({:submit_batch, ...}) matched the inner
handle_call({:submit, ...}) against a bare {:ok, id, result}, but that
call returns a GenServer {:reply, {:ok, id, result}, state} 3-tuple — so
submit_batch/2 raised MatchError for any non-empty issue list, taking down
the Submitter GenServer. Destructure the reply payload instead.
The pre-existing test 'submit_batch/2 batch submission processes multiple
issues' now passes; full suite green (139 tests, 0 failures).
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>1 parent f25df0a commit 2e6ffc1
1 file changed
Lines changed: 3 additions & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
119 | 119 | | |
120 | 120 | | |
121 | 121 | | |
122 | | - | |
| 122 | + | |
| 123 | + | |
| 124 | + | |
123 | 125 | | |
124 | 126 | | |
125 | 127 | | |
| |||
0 commit comments