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 | 64b907678a38848c4af3d0270ccee688c5d7752c (patch) | |
tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 /library/cpp/http/fetch/exthttpcodes.cpp | |
parent | 18b37a6b1f9505f53dbc85a6f934d9f1ee4612e2 (diff) | |
download | ydb-64b907678a38848c4af3d0270ccee688c5d7752c.tar.gz |
Restoring authorship annotation for <bazil@yandex-team.ru>. Commit 2 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 8978eecc0c..acc05650c8 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 |