Skip to content

Commit 0f51ed4

Browse files
committed
(lcore-1251) quick tls server fix
1 parent c68dc1b commit 0f51ed4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/e2e/mock_tls_inference_server/server.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,8 +154,8 @@ def main() -> None:
154154
ca = trustme.CA()
155155
# Server cert with SANs for Docker service name and localhost
156156
server_cert = ca.issue_cert("mock-tls-inference", "localhost", "127.0.0.1")
157-
# Client cert for mTLS testing
158-
client_cert = ca.issue_cert("TLS E2E Test Client")
157+
# Client cert for mTLS testing (use a simple hostname without spaces)
158+
client_cert = ca.issue_cert("tls-e2e-test-client")
159159

160160
# Export certificates to /certs directory for access by tests
161161
certs_dir = Path("/certs")

0 commit comments

Comments
 (0)