From 2d8156a72767c5974de9bfd66dd411e9213d39ea Mon Sep 17 00:00:00 2001 From: Aviv Eyal Date: Fri, 15 May 2020 12:15:50 +0000 Subject: [PATCH] update SSL error messge re:libphutil MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Test Plan: ╰(*°▽°*)╯ Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: Korvin Differential Revision: https://secure.phabricator.com/D21258 --- src/future/http/status/HTTPFutureCURLResponseStatus.php | 4 ++-- .../http/status/HTTPFutureCertificateResponseStatus.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/future/http/status/HTTPFutureCURLResponseStatus.php b/src/future/http/status/HTTPFutureCURLResponseStatus.php index 50c61805..cda6388e 100644 --- a/src/future/http/status/HTTPFutureCURLResponseStatus.php +++ b/src/future/http/status/HTTPFutureCURLResponseStatus.php @@ -43,7 +43,7 @@ final class HTTPFutureCURLResponseStatus extends HTTPFutureResponseStatus { 'negotiating the SSL connection. This usually indicates that you are '. 'using a self-signed certificate but have not added your CA to the '. 'CA bundle. See instructions in "%s".', - 'libphutil/resources/ssl/README'), + 'arcanist/resources/ssl/README'), // Apparently there's no error constant for this? In cURL it's // CURLE_SSL_CACERT_BADFILE but there's no corresponding constant in @@ -58,7 +58,7 @@ final class HTTPFutureCURLResponseStatus extends HTTPFutureResponseStatus { 'local host has some sort of SSL misconfiguration which prevents it '. 'from accepting the CA. If you are using a self-signed certificate, '. 'see instructions in "%s".', - 'libphutil/resources/ssl/README'), + 'arcanist/resources/ssl/README'), CURLE_OPERATION_TIMEOUTED => pht( 'The request took too long to complete.'), diff --git a/src/future/http/status/HTTPFutureCertificateResponseStatus.php b/src/future/http/status/HTTPFutureCertificateResponseStatus.php index d6e35f89..76bd5564 100644 --- a/src/future/http/status/HTTPFutureCertificateResponseStatus.php +++ b/src/future/http/status/HTTPFutureCertificateResponseStatus.php @@ -27,7 +27,7 @@ final class HTTPFutureCertificateResponseStatus "line, or by visiting the site in Safari and choosing to trust the ". "certificate permanently.\n\n". 'For more information, see instructions in "%s".', - 'libphutil/resources/ssl/README'); + 'arcanist/resources/ssl/README'); } }