fixed retry condition

This commit is contained in:
TotallyNot 2022-09-05 01:42:14 +02:00
parent 758ab39a1d
commit b27cec1411
2 changed files with 2 additions and 3 deletions

View file

@ -127,8 +127,7 @@ impl KeyPoolStorage for PgKeyPoolStorage {
.await?;
Ok(true)
}
9 => Ok(false),
_ => Ok(true),
_ => Ok(false),
}
}
}