What it means: any path which doesn't match with /tickets/farewell, /tickets/turnstile and /turnstile - will match with "" (empty string)
So, it means that https://chertopolokh.ru/adwadawdawd will be matched to https://chertopolokh.ru
Problem:
We have kabinet microservice which fails sometimes. kabinet has healthcheck route https://chertopolokh.ru/kabinet/api/health and it should response with 200 status code
And when kabinet fails - healthcheck route matches to "" (empty string) route - and I have no any notifications about fails)
Explanation: We have
TicketStore.Web
microservice and the following routes:Please pay attention for the following things:
""
(empty string)exact
flagWhat it means: any path which doesn't match with
/tickets/farewell
,/tickets/turnstile
and/turnstile
- will match with""
(empty string) So, it means thathttps://chertopolokh.ru/adwadawdawd
will be matched tohttps://chertopolokh.ru
Problem: We have
kabinet
microservice which fails sometimes.kabinet
has healthcheck routehttps://chertopolokh.ru/kabinet/api/health
and it should response with200
status code And whenkabinet
fails - healthcheck route matches to""
(empty string) route - and I have no any notifications about fails)