Skip to content

Commit 7fc2646

Browse files
committed
fix config var2
1 parent e82d77a commit 7fc2646

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

simple_vm_client/VirtualMachineServer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def catch_shutdown(signal: int, frame: object) -> None:
5252
USE_SSL = cfg["server"].get("use_ssl", True)
5353
if USE_SSL:
5454
CERTFILE = cfg["server"]["certfile"]
55-
CA_CERTS_PATH = cfg["openstack_connection"].get("ca_certs_path", None)
55+
CA_CERTS_PATH = cfg["server"].get("ca_certs_path", None)
5656

5757
THREADS = cfg["server"]["threads"]
5858
click.echo(f"Server is running on port {PORT}")

0 commit comments

Comments
 (0)