From b23f1297e61681bff14bea1e8c2e3e795df64e20 Mon Sep 17 00:00:00 2001 From: Joachim Lusiardi Date: Sun, 10 Apr 2016 12:47:18 +0200 Subject: [PATCH] Fixed wrong function call --- start.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/start.py b/start.py index 367c440..2f31908 100644 --- a/start.py +++ b/start.py @@ -176,7 +176,7 @@ if __name__ == '__main__': if event['Action'] in ['start', 'destroy']: # check if there is any domain name configured container_id = event['id'] - if len(list_domains.handle_container()) > 0: + if len(list_domains.handle_container(client, container_id)) > 0: resolved_domains = list_domains.get_resolving_domains_from_containers(client) create_cert_data_standalone(resolved_domains) create_haproxy_cert()