Open mjhcorporate opened 1 month ago
I have the following, simplified, OpenAPI 3.0 file:
openapi: 3.0.0 info: title: Car Rental API version: 1.0.0 description: API for searching and booking rental cars servers: - url: https://localhost:3000 paths: /health: get: summary: Health check endpoint responses: '200': description: OK content: application/json: schema: type: object properties: status: type: string example: "OK"
When I import this in Bruno, the single GET request is created with the following url: https:/localhost:3000//health.
https:/localhost:3000//health
https:
localhost
3000
health
Curiously, sending this request works, albeit with the server complaining about a non-existing endpoint...
No response
Hi team, I have raised a PR for fixing this. #3121 .
cc: @sanjai0py
Thanks, Apoorv
I have checked the following:
Describe the bug
I have the following, simplified, OpenAPI 3.0 file:
When I import this in Bruno, the single GET request is created with the following url:
https:/localhost:3000//health
.https:
andlocalhost
3000
andhealth
Curiously, sending this request works, albeit with the server complaining about a non-existing endpoint...
.bru file to reproduce the bug
No response
Screenshots/Live demo link