Skip to content
This repository has been archived by the owner on Nov 30, 2021. It is now read-only.

Commit

Permalink
Fix missing parameter in SSL connection example
Browse files Browse the repository at this point in the history
  • Loading branch information
SandyTruth authored and jdufresne committed Jul 19, 2018
1 parent e62ea6b commit f00523d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit f00523d

Please sign in to comment.