-
Hi! We are integrating the Some things that we are running into are in combination with pebble: The first thing; Pebble by default returns a
Subsequent requests towards pebble The second issue is a bit more complex. We are getting again the same error from
When you have the
Has anyone experienced the same with pebble and maybe can help us resolve this issue with the go-acme library? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
Hello, the project is FYI, all our integration tests are based on pebble: https://github.com/go-acme/lego/tree/master/e2e |
Beta Was this translation helpful? Give feedback.
-
lego retries automatically on Our tests use a 20% reject ( |
Beta Was this translation helpful? Give feedback.
@ldez I did some further testing, with the default
http.Client
from lego it works without any issues. There were issues when I re-introduced our ownhttp.Client
implementation. There was a transformation happening on thehttp.Response.Header
from a typehttp.Header
to a typemap[string]string
, this was then transformed back. Removing this transformation resolved all issues withlego
.Thanks for the help! The e2e dir is very useful.