Skip to content

Commit

Permalink
chore: fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
knrdl committed Dec 2, 2024
1 parent d7150f8 commit f27f7c0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/acme/directory/router.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ async def get_directory():
"""
See RFC 8555 7.1.1 "Directory" <https://www.rfc-editor.org/rfc/rfc8555#section-7.1.1>
"""

meta = {'website': settings.external_url}
if settings.acme.terms_of_service_url:
meta['termsOfService'] = settings.acme.terms_of_service_url
Expand Down
2 changes: 1 addition & 1 deletion tests/pytest/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

@pytest.fixture(scope='session')
def testclient() -> Generator[TestClient, None, None]:
os.environ['ca_encryption_key'] = 'M8L6RSYPiHHr6GogXmkQIs7gVai_K5fDDJiNK7zUt0k='
os.environ['ca_encryption_key'] = 'M8L6RSYPiHHr6GogXmkQIs7gVia_K5fDDJiNK7zUt0k='
os.environ['external_url'] = 'http://localhost:8000/'

ca_dir = Path(__file__).parent / 'import-ca'
Expand Down

0 comments on commit f27f7c0

Please sign in to comment.