We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 833a596 commit 7062733Copy full SHA for 7062733
crates/rustapi-jobs/src/backend/redis.rs
@@ -43,7 +43,7 @@ impl JobBackend for RedisBackend {
43
async fn push(&self, job: JobRequest) -> Result<()> {
44
let mut conn = self
45
.client
46
- .get_async_connection()
+ .get_multiplexed_async_connection()
47
.await
48
.map_err(|e| JobError::BackendError(e.to_string()))?;
49
@@ -60,7 +60,7 @@ impl JobBackend for RedisBackend {
60
async fn pop(&self) -> Result<Option<JobRequest>> {
61
62
63
64
65
66
0 commit comments