Skip to content

Commit fae71cf

Browse files
committed
#486 fix query param for getExecutionResults
1 parent 25dcab0 commit fae71cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

access/http/handler.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,7 @@ func (h *httpHandler) getExecutionResults(
398398
u := h.mustBuildURL("/execution_results", opts...)
399399

400400
q := u.Query()
401-
q.Add("block_ids", strings.Join(blockIDs, ","))
401+
q.Add("block_id", strings.Join(blockIDs, ","))
402402
u.RawQuery = q.Encode()
403403

404404
var results []models.ExecutionResult

0 commit comments

Comments
 (0)