[PECL-CVS] [pecl-networking-gearman] add-ssl-support: address reviews
[email protected] (Rasmus Lerdorf) Sat, 4 Apr 2026 19:53:22 +0000
| Newsgroups | php.pecl.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: Rasmus Lerdorf (rlerdorf) Date: 2026-04-04T15:53:16-04:00 Commit: https://github.com/php/pecl-networking-gearman/commit/2bbea28f1c09fabb5a00c9b131e5699283b5d1de Raw diff: https://github.com/php/pecl-networking-gearman/commit/2bbea28f1c09fabb5a00c9b131e5699283b5d1de.diff address reviews Changed paths: M tests/gearman_client_024.phpt Diff: diff --git a/tests/gearman_client_024.phpt b/tests/gearman_client_024.phpt index 2205dd8..4bc3e4a 100644 --- a/tests/gearman_client_024.phpt +++ b/tests/gearman_client_024.phpt @@ -11,7 +11,6 @@ $client = new GearmanClient(); var_dump($client->setSSL()); var_dump($client->setSSL(false)); var_dump($client->setSSL(true, null, null, null)); -var_dump($client->setSSL(true, "/tmp/ca.pem", "/tmp/cert.pem", "/tmp/key.pem")); $client2 = gearman_client_create(); var_dump(gearman_client_set_ssl($client2)); @@ -25,5 +24,4 @@ bool(true) bool(true) bool(true) bool(true) -bool(true) OK