Skip to content

Commit

Permalink
fix: vacuum for done jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
geofmureithi committed Jan 5, 2025
1 parent 535e50c commit 3fc8d77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/apalis-redis/src/storage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -818,7 +818,7 @@ where
async fn vacuum(&mut self) -> Result<usize, RedisError> {
let vacuum_script = self.scripts.vacuum.clone();
vacuum_script
.key(self.config.dead_jobs_set())
.key(self.config.done_jobs_set())
.key(self.config.job_data_hash())
.invoke_async(&mut self.conn)
.await
Expand Down

0 comments on commit 3fc8d77

Please sign in to comment.