Skip to content

#1664: HTTP Timeout Config

Martin Vogel requested to merge feature/http-timeouts into main

Make the timeouts of the HTTP-client configurable via yaml (and ApplicationConfig Builder):

Before All timeouts default to 10s

proxyConfig:
  host: "https://proxy.test.net"
  port: 8080

After

httpConfig:
  # timeouts in seconds
  timeouts:
    readTimeout: 60
    writeTimeout: 60
    connectionTimeout: 60
  proxyConfig:
    host: "https://proxy.test.net"
    port: 8080

Closes planning#1664 (closed)

Edited by Martin Vogel

Merge request reports