mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-23 13:08:18 +01:00
In Webhooks, label HTTP response codes as "HTTP Status Code", not "HTTP Error"
Summary: See PHI1068. We currently show "HTTP Error - 200", which is misleading. Instead, label these results as "HTTP Status Code". Test Plan: {F6206016} Reviewers: amckinley Reviewed By: amckinley Differential Revision: https://secure.phabricator.com/D20148
This commit is contained in:
parent
308c4f2407
commit
00ffb190cc
1 changed files with 1 additions and 1 deletions
|
@ -120,7 +120,7 @@ final class HeraldWebhookRequest
|
|||
public function getErrorTypeForDisplay() {
|
||||
$map = array(
|
||||
self::ERRORTYPE_HOOK => pht('Hook Error'),
|
||||
self::ERRORTYPE_HTTP => pht('HTTP Error'),
|
||||
self::ERRORTYPE_HTTP => pht('HTTP Status Code'),
|
||||
self::ERRORTYPE_TIMEOUT => pht('Request Timeout'),
|
||||
);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue