skip to Main Content

troubleshooting Azure API Management URI rewrite

Arriving URL format https://my-apim.azure-api.net/product/service1/v3/service1/operation. Client library prefix second "service1" to the URL, my base URL: "https://my-apim.azure-api.net/product/service1/" , version - v3, operation - "/operation". Because of second "service1" in the URL APIM can't find matching API operation. I have added rewrite-uri…

VIEW QUESTION

Azure APIM named values using terraform

I have a terraform variable as given below variable "named_values" { type = map(object({ value = string secret = bool secret_id = optional(string) identity_client_id = optional(string) })) default = { "my-named-value-1" = { value = "my-plain-text-value-1" secret = false secret_id…

VIEW QUESTION

Why does Azure Self-hosted agent receive Connection refused error when connecting with EventHubs?

When using Azure self-hosted agent deployed on Kubernetes I face the following error: [Error]2024-06-14T11:28:08.719 [EventHubSendFailed], exception: System.Net.Sockets.SocketException (111): Connection refused at Microsoft.Azure.EventHubs.Amqp.AmqpEventHubClient.CreateConnectionAsync(TimeSpan timeout) at Microsoft.Azure.Amqp.FaultTolerantAmqpObject`1.OnCreateAsync(TimeSpan timeout) at Microsoft.Azure.Amqp.Singleton`1.GetOrCreateAsync(TimeSpan timeout) at Microsoft.Azure.Amqp.Singleton`1.GetOrCreateAsync(TimeSpan timeout) at Microsoft.Azure.EventHubs.Amqp.AmqpEventDataSender.CreateLinkAsync(TimeSpan timeout) at Microsoft.Azure.Amqp.FaultTolerantAmqpObject`1.OnCreateAsync(TimeSpan timeout) at Microsoft.Azure.Amqp.Singleton`1.GetOrCreateAsync(TimeSpan…

VIEW QUESTION
Back To Top
Search