This message was deleted.
# general
s
This message was deleted.
t
Hi @Roman Brühlmann you might be better off disabling pooling in your client, since this is more directly equivalent to what you’ve been doing with the Connection header.
r
Thank you.
Copy code
feign:
  client:
    config:
      default:
        # fix NoHttpResponseException on Jenkins <https://stackoverflow.com/questions/55624675/how-to-fix-nohttpresponseexception-when-running-wiremock-on-jenkins>
        defaultRequestHeaders:
          Connection:
            - close
in the application.yml does the trick.
👍 1