Fix api timeout (#6401)

This commit is contained in:
martmull
2024-07-25 08:38:05 +02:00
committed by GitHub
parent 082d55beac
commit 7c6ca0e841
4 changed files with 6 additions and 2 deletions

View File

@ -69,6 +69,7 @@ describe('computeParameters', () => {
schema: {
type: 'integer',
enum: [0, 1, 2],
default: 1,
},
});
});

View File

@ -60,6 +60,7 @@ export const computeDepthParameters = (): OpenAPIV3_1.ParameterObject => {
schema: {
type: 'integer',
enum: [0, 1, 2],
default: 1,
},
};
};