Skip to content

Commit 110f01f

Browse files
committed
fix: remove unused chunk_size parameter from range schema
1 parent f85766c commit 110f01f

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

src/routes/dynamic-data/range.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import type {
77

88
type RangeRequest = FastifyRequest<{
99
Params: { numbytes: string };
10-
Querystring: { duration?: string; chunk_size?: string };
10+
Querystring: { duration?: string };
1111
}>;
1212

1313
const rangeSchema: FastifySchema = {
@@ -31,10 +31,6 @@ const rangeSchema: FastifySchema = {
3131
type: "string",
3232
description: "Delay before sending response in seconds",
3333
},
34-
chunk_size: {
35-
type: "string",
36-
description: "Size of each chunk",
37-
},
3834
},
3935
},
4036
response: {

0 commit comments

Comments
 (0)