I have an Azure Function App ver4 (net6) with HttpTrigger using OpenAPI and it raises exception 'The host has not yet started'.
Does the following error let me know to remove the character '/' that precedes my Route string value /blog/{blogId}/post/{postId}
:
A host error has occurred during startup operation '2397a6d1-fa1c-4895-b062-f7e4faf57970'. [2022-12-31T08:12:29.716Z] Microsoft.AspNetCore.Routing: An error occurred while creating the route with name 'GetBlogPost' and template 'api//blog/{blogId}/post/{postId}'. Microsoft.AspNetCore.Routing: The route template separator character '/' cannot appear consecutively. It must be separated by either a parameter or a literal value. (Parameter 'routeTemplate'). Microsoft.AspNetCore.Routing: The route template separator character '/' cannot appear consecutively. It must be separated by either a parameter or a literal value.
Yes / No ?
Thanks!