From 42f30e72b5e0871dee1dff2972906362da0a7168 Mon Sep 17 00:00:00 2001 From: zicklam Date: Wed, 8 May 2019 08:35:26 +0200 Subject: [PATCH] False is not false --- awx/main/notifications/webhook_backend.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/main/notifications/webhook_backend.py b/awx/main/notifications/webhook_backend.py index 648da40df8..7a68587621 100644 --- a/awx/main/notifications/webhook_backend.py +++ b/awx/main/notifications/webhook_backend.py @@ -15,7 +15,7 @@ logger = logging.getLogger('awx.main.notifications.webhook_backend') class WebhookBackend(AWXBaseEmailBackend): init_parameters = {"url": {"label": "Target URL", "type": "string"}, - "disable_ssl_verification": {"label": "Verify SSL", "type": "bool", "default": false}, + "disable_ssl_verification": {"label": "Verify SSL", "type": "bool", "default": False}, "headers": {"label": "HTTP Headers", "type": "object"}} recipient_parameter = "url" sender_parameter = None