diff options
author | Rainer Jung <rjung@apache.org> | 2024-07-24 12:42:18 +0200 |
---|---|---|
committer | Rainer Jung <rjung@apache.org> | 2024-07-24 12:42:18 +0200 |
commit | 0e30f592011fa88793a3dc836b04ca0996b0a698 (patch) | |
tree | 0d1cba44d7bcebd558c576782b7ba583747ddd9d /test | |
parent | xforms (diff) | |
download | apache2-0e30f592011fa88793a3dc836b04ca0996b0a698.tar.xz apache2-0e30f592011fa88793a3dc836b04ca0996b0a698.zip |
Reenable test class, upstream bug fixed in pebble.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1919491 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test')
-rwxr-xr-x | test/modules/md/md_env.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/modules/md/md_env.py b/test/modules/md/md_env.py index 193651948a..360086f97b 100755 --- a/test/modules/md/md_env.py +++ b/test/modules/md/md_env.py @@ -73,11 +73,11 @@ class MDTestEnv(HttpdTestEnv): @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: |