From 104c24fcd7adc5c1f7b6cdef41751d35bf1348ff Mon Sep 17 00:00:00 2001 From: Niten Date: Wed, 11 Nov 2020 13:05:25 -0800 Subject: [PATCH] turn of db tls (for now at least) --- backplane-dns.lisp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/backplane-dns.lisp b/backplane-dns.lisp index 78ddc3f..f56dd2e 100644 --- a/backplane-dns.lisp +++ b/backplane-dns.lisp @@ -191,8 +191,9 @@ db-host db-name db-username - db-password) - (postmodern:with-connection (list db-name db-username db-password db-host :use-ssl :try) + db-password + db-tls) + (postmodern:with-connection (list db-name db-username db-password db-host) (with-backplane xmpp-host xmpp-username xmpp-password (lambda (backplane) (xmpp:receive-stanza-loop backplane)))))