fixed retry condition
This commit is contained in:
parent
27d7b4e9d9
commit
17bbc07e50
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "torn-key-pool"
|
||||
version = "0.2.0"
|
||||
version = "0.2.1"
|
||||
edition = "2021"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
|
|
@ -127,8 +127,7 @@ impl KeyPoolStorage for PgKeyPoolStorage {
|
|||
.await?;
|
||||
Ok(true)
|
||||
}
|
||||
9 => Ok(false),
|
||||
_ => Ok(true),
|
||||
_ => Ok(false),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue