Fix copy-paste error in job macro

This commit is contained in:
Diggory Blake 2021-07-19 00:41:00 +01:00
parent fc4e909d24
commit ec9d2bae2e
No known key found for this signature in database
GPG key ID: E6BDFA83146ABD40
3 changed files with 4 additions and 4 deletions

View file

@ -1,6 +1,6 @@
[package]
name = "sqlxmq"
version = "0.2.0"
version = "0.2.1"
authors = ["Diggory Blake <diggsey@googlemail.com>"]
edition = "2018"
license = "MIT OR Apache-2.0"
@ -23,7 +23,7 @@ uuid = { version = "0.8.2", features = ["v4"] }
log = "0.4.14"
serde_json = "1.0.64"
serde = "1.0.124"
sqlxmq_macros = { version = "0.2.0", path = "sqlxmq_macros" }
sqlxmq_macros = { version = "0.2.1", path = "sqlxmq_macros" }
anymap2 = "0.13.0"
[features]

View file

@ -1,6 +1,6 @@
[package]
name = "sqlxmq_macros"
version = "0.2.0"
version = "0.2.1"
authors = ["Diggory Blake <diggsey@googlemail.com>"]
edition = "2018"
license = "MIT OR Apache-2.0"

View file

@ -63,7 +63,7 @@ fn interpret_job_arg(options: &mut JobOptions, arg: NestedMeta) -> Result<()> {
options.channel_name = Some(s.value());
}
("retries", OptionValue::Lit(Lit::Int(n))) if options.retries.is_none() => {
options.name = Some(n.base10_parse()?);
options.retries = Some(n.base10_parse()?);
}
("backoff_secs", OptionValue::Lit(Lit::Float(n)))
if options.backoff_secs.is_none() =>