Readme example forgotten unwrap

This commit is contained in:
Imbolc 2022-07-05 12:46:35 +03:00 committed by GitHub
parent bca15c561c
commit c121e6c997
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -190,7 +190,7 @@ The final step is to actually run a job.
example_job.builder()
// This is where we can override job configuration
.set_channel_name("bar")
.set_json("John")
.set_json("John")?
.spawn(&pool)
.await?;
```