I setup Spring Cloud Config Server to work with Git repository. It works fine except the warning like this
pClientConfigurableHttpConnectionFactory : No custom http config found for URL:<URL>
What does it mean? What I need to configure?
I found the answer by myself. The problem was with git uri. I previously set it like:
It produces the redirections and eventually the warnings.
I had to use "https" and ".git" in uri like this:
https://example.com/my-repo.git
Now it works fine.