1
0
Fork 0
mirror of https://we.phorge.it/source/arcanist.git synced 2024-11-10 00:42:40 +01:00

update SSL error messge re:libphutil

Test Plan: ╰(*°▽°*)╯

Reviewers: epriestley, #blessed_reviewers

Reviewed By: epriestley, #blessed_reviewers

Subscribers: Korvin

Differential Revision: https://secure.phabricator.com/D21258
This commit is contained in:
Aviv Eyal 2020-05-15 12:15:50 +00:00 committed by avivey
parent b76b9c4065
commit 2d8156a727
2 changed files with 3 additions and 3 deletions

View file

@ -43,7 +43,7 @@ final class HTTPFutureCURLResponseStatus extends HTTPFutureResponseStatus {
'negotiating the SSL connection. This usually indicates that you are '. 'negotiating the SSL connection. This usually indicates that you are '.
'using a self-signed certificate but have not added your CA to the '. 'using a self-signed certificate but have not added your CA to the '.
'CA bundle. See instructions in "%s".', '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 // Apparently there's no error constant for this? In cURL it's
// CURLE_SSL_CACERT_BADFILE but there's no corresponding constant in // 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 '. 'local host has some sort of SSL misconfiguration which prevents it '.
'from accepting the CA. If you are using a self-signed certificate, '. 'from accepting the CA. If you are using a self-signed certificate, '.
'see instructions in "%s".', 'see instructions in "%s".',
'libphutil/resources/ssl/README'), 'arcanist/resources/ssl/README'),
CURLE_OPERATION_TIMEOUTED => pht( CURLE_OPERATION_TIMEOUTED => pht(
'The request took too long to complete.'), 'The request took too long to complete.'),

View file

@ -27,7 +27,7 @@ final class HTTPFutureCertificateResponseStatus
"line, or by visiting the site in Safari and choosing to trust the ". "line, or by visiting the site in Safari and choosing to trust the ".
"certificate permanently.\n\n". "certificate permanently.\n\n".
'For more information, see instructions in "%s".', 'For more information, see instructions in "%s".',
'libphutil/resources/ssl/README'); 'arcanist/resources/ssl/README');
} }
} }