Skip to content

Commit

Permalink
Include id in Range header (#1675)
Browse files Browse the repository at this point in the history
  • Loading branch information
eablack authored Nov 11, 2020
1 parent cc09cfb commit 6adc98b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/pipelines/src/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export function getTeam(heroku: APIClient, teamId: any) {
function getAppFilter(heroku: APIClient, appIds: Array<string>) {
return heroku.request<Array<Heroku.App>>('/filters/apps', {
method: 'POST',
headers: {Accept: FILTERS_HEADER, Range: 'max=1000'},
headers: {Accept: FILTERS_HEADER, Range: 'id ..; max=1000;'},
body: {in: {id: appIds}},
})
}
Expand Down

0 comments on commit 6adc98b

Please sign in to comment.