diff options
author | bazil <bazil@yandex-team.ru> | 2022-02-10 16:49:43 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:49:43 +0300 |
commit | 18b37a6b1f9505f53dbc85a6f934d9f1ee4612e2 (patch) | |
tree | 8960ed7c1df8c28705b0ca07b4a5ecefc7ddff4e /library/cpp/http/fetch/exthttpcodes.cpp | |
parent | d2247f243d31adde8feb765324e40c83c5a90999 (diff) | |
download | ydb-18b37a6b1f9505f53dbc85a6f934d9f1ee4612e2.tar.gz |
Restoring authorship annotation for <bazil@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/http/fetch/exthttpcodes.cpp')
-rw-r--r-- | library/cpp/http/fetch/exthttpcodes.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/cpp/http/fetch/exthttpcodes.cpp b/library/cpp/http/fetch/exthttpcodes.cpp index acc05650c8..8978eecc0c 100644 --- a/library/cpp/http/fetch/exthttpcodes.cpp +++ b/library/cpp/http/fetch/exthttpcodes.cpp @@ -69,14 +69,14 @@ static http_flag HTTP_FLAG[] = { {HTTP_SERVICE_UNAVAILABLE, ShouldDisconnect | ShouldRetry | MarkSuspect}, // 503 {HTTP_GATEWAY_TIME_OUT, ShouldDisconnect | ShouldRetry | MarkSuspect}, // 504 {HTTP_HTTP_VERSION_NOT_SUPPORTED, CrazyServer | ShouldDisconnect}, // 505 - + {HTTP_VARIANT_ALSO_NEGOTIATES, CrazyServer | ShouldDisconnect}, // 506 {HTTP_INSUFFICIENT_STORAGE, CrazyServer | ShouldDisconnect}, // 507 {HTTP_LOOP_DETECTED, CrazyServer | ShouldDisconnect}, // 508 {HTTP_BANDWIDTH_LIMIT_EXCEEDED, ShouldDisconnect | ShouldRetry | MarkSuspect}, // 509 {HTTP_NOT_EXTENDED, ShouldDelete}, // 510 {HTTP_NETWORK_AUTHENTICATION_REQUIRED, ShouldDelete}, // 511 - + // custom {HTTP_BAD_RESPONSE_HEADER, CrazyServer}, // 1000 {HTTP_CONNECTION_LOST, ShouldRetry}, // 1001 |