mirror of
https://github.com/Diggsey/sqlxmq.git
synced 2024-11-25 01:31:03 +00:00
Readme example forgotten unwrap
This commit is contained in:
parent
bca15c561c
commit
c121e6c997
1 changed files with 1 additions and 1 deletions
|
@ -190,7 +190,7 @@ The final step is to actually run a job.
|
||||||
example_job.builder()
|
example_job.builder()
|
||||||
// This is where we can override job configuration
|
// This is where we can override job configuration
|
||||||
.set_channel_name("bar")
|
.set_channel_name("bar")
|
||||||
.set_json("John")
|
.set_json("John")?
|
||||||
.spawn(&pool)
|
.spawn(&pool)
|
||||||
.await?;
|
.await?;
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in a new issue