Skip to content

Commit

Permalink
Considering queue config parameter 'after_commit' (#948)
Browse files Browse the repository at this point in the history
  • Loading branch information
graemlourens committed Dec 17, 2020
1 parent 26b737d commit 69f85a2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Connectors/RedisConnector.php
Expand Up @@ -20,7 +20,8 @@ public function connect(array $config)
$this->redis, $config['queue'],
Arr::get($config, 'connection', $this->connection),
Arr::get($config, 'retry_after', 60),
Arr::get($config, 'block_for', null)
Arr::get($config, 'block_for', null),
Arr::get($config, 'after_commit', null)
);
}
}

0 comments on commit 69f85a2

Please sign in to comment.