diff --git a/core/src/error.rs b/core/src/error.rs index a5273479..13491a39 100644 --- a/core/src/error.rs +++ b/core/src/error.rs @@ -321,7 +321,7 @@ impl From for Error { impl From for Error { fn from(err: hyper::Error) -> Self { - if err.is_parse() || err.is_parse_too_large() || err.is_parse_status() || err.is_user() { + if err.is_parse() || err.is_parse_status() || err.is_user() { return Self::new(ErrorKind::Internal, err); }