-
-
Notifications
You must be signed in to change notification settings - Fork 209
Closed
Labels
bugConfirmed bugConfirmed bughelp wantedHelp the community by contributing to this issueHelp the community by contributing to this issue
Description
Prerequisites
- I have written a descriptive issue title
- I have searched existing issues to ensure the bug has not already been reported
Fastify version
4.3.0
Plugin version
No response
Node.js version
16.13.0
Operating system
macOS
Operating system version (i.e. 20.04, 11.3, 10)
13.0
Description
When specifying the response schema with 'const' I noticed that the RPS decreased.
Steps to Reproduce
Options used:
{
schema: {
response: {
200: {
type: "object",
properties: {
msg: { type: "string" },
}
}
}
}
Options used:
{
schema: {
response: {
200: {
type: "object",
properties: {
msg: { const: "hello world" },
}
}
}
}
Repository with the code: https://github.com/DanieleFedeli/fastify-response-schema-issue
Expected Behavior
I expect at least the same performance when specifying const in the schema.
Metadata
Metadata
Assignees
Labels
bugConfirmed bugConfirmed bughelp wantedHelp the community by contributing to this issueHelp the community by contributing to this issue