Override service server decorator with nested sever decorator #6773
Labels
compiler:core
Issues for @typespec/compiler
design:needed
A design request has been raised that needs a proposal
triaged:core
Milestone
It seems i cannot specify a specific server url for a specific endpoint, when the default server URL is already assigned to the top level namespace/service.
Consider the following. We have a service which looks like:
You can see we are importing all the declared endpoints for this service. The endpoint we are focusing on is the
embeds-tokens
, which looks like:Notice how in this endpoint we set the server so it has no variables and the
space_name
variable from the top level service has replaced with a staticembeds
in the url. This is intentional as the api is not bounded to a persons account in this case, but still is part of the service pathway which is/api/farbic/endpoint
.In a openapi spec, I can solve this by declaring another
servers
property directly inside the endpoint schema.Which would look like:
However, even with the
server
decorator on the endpoint (which shows as valid) the spec will generate like such:It seems reasonable to follow Open APIs behavior here.
Example Playground
Originally posted by @Devon-White in #6696
The text was updated successfully, but these errors were encountered: