Skip to content

Commit

Permalink
Bugfix to AppendNimble
Browse files Browse the repository at this point in the history
  • Loading branch information
bbimber committed Jan 24, 2025
1 parent 22034c2 commit 69acb61
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ protected Chunk createParamChunk(SequenceOutputHandler.JobContext ctx, List<Seur
for (int i = 0; i < json.length(); i++)
{
JSONArray arr = json.getJSONArray(i);
if (arr.length() != 3)
if (arr.length() != 4)
{
throw new PipelineJobException("Unexpected value: " + json.getString(i));
}
Expand Down

0 comments on commit 69acb61

Please sign in to comment.