Hi <@UDVMV4NBU> How to configure client read-timeo...
# micronaut
a
Hi @Graeme How to configure client read-timeout specific to client rather than having it generic for all clients ? I don't find enough documentation on this
The following setting is not picking up read-timeout specific to client
Copy code
micronaut:
  http:
    client:
      read-timeout: 1500ms
      connect-timeout: 200ms
    services:
      price:
        urls:
          - <http://price-service:80>
      fulfilmentOptions:
        urls:
          - <https://delivery-methods>
        read-timeout: 5000ms
m
!!