From f00523d6731d104e414301587c27323a2961dee6 Mon Sep 17 00:00:00 2001 From: Sandy Smith Date: Mon, 2 Apr 2018 15:10:00 -0400 Subject: [PATCH] Fix missing parameter in SSL connection example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4394696..eba7875 100644 --- a/README.md +++ b/README.md @@ -90,7 +90,7 @@ options: 'CN_match' => 'CERT_COMMON_NAME' ]; - $c = new \Celery\Celery($host, $user, $password, $vhost, 'celery', 'celery', 5671, false, false, $ssl_options); + $c = new \Celery\Celery($host, $user, $password, $vhost, 'celery', 'celery', 5671, false, false, 0, $ssl_options); ## CONNECTING TO REDIS