Skip to content

Commit

Permalink
Reenable test class, upstream bug fixed in pebble.
Browse files Browse the repository at this point in the history
Backport of r1919491 from trunk.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1919492 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
rainerjung committed Jul 24, 2024
1 parent 1927caa commit 21bf059
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test/modules/md/md_env.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,11 +73,11 @@ def has_acme_server(cls):

@classmethod
def has_acme_eab(cls):
return False
# Pebble, since v2.5.0 no longer supports HS256 for EAB, which
# is the only thing mod_md supports. Issue opened at pebble:
# https://github.com/letsencrypt/pebble/issues/455
# return cls.get_acme_server() == 'pebble'
# Pebble v2.5.0 and v2.5.1 do not support HS256 for EAB, which
# is the only thing mod_md supports.
# Should work for pebble until v2.4.0 and v2.5.2+.
# Reference: https://github.com/letsencrypt/pebble/issues/455
return cls.get_acme_server() == 'pebble'

@classmethod
def is_pebble(cls) -> bool:
Expand Down

0 comments on commit 21bf059

Please sign in to comment.