mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 04:47:39 +03:00
clippy warnings
This commit is contained in:
parent
e05bb784d6
commit
7130ebc45e
2 changed files with 3 additions and 2 deletions
|
@ -182,7 +182,7 @@ impl<'de, T: ResourcePath + 'de> Deserializer<'de> for PathDeserializer<'de, T>
|
|||
where
|
||||
V: Visitor<'de>,
|
||||
{
|
||||
if self.path.len() < 1 {
|
||||
if self.path.is_empty() {
|
||||
Err(de::value::Error::custom(
|
||||
format!("wrong number of parameters: {} expected 1", self.path.len())
|
||||
.as_str(),
|
||||
|
|
|
@ -188,7 +188,7 @@ where
|
|||
Flags::READ_EOF
|
||||
};
|
||||
if config.keep_alive_timer_enabled() {
|
||||
flags = flags | Flags::HAS_KEEPALIVE;
|
||||
flags |= Flags::HAS_KEEPALIVE;
|
||||
}
|
||||
|
||||
// keep-alive timer
|
||||
|
@ -236,6 +236,7 @@ where
|
|||
{
|
||||
type Output = Result<(), DispatchError>;
|
||||
|
||||
#[allow(clippy::cognitive_complexity)]
|
||||
fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
|
||||
let mut this = self.as_mut().project();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue