Skip to content

Commit a20d956

Browse files
committed
Merge branch '5.x'
# Conflicts: # CHANGELOG.md
2 parents fe3993a + f91245c commit a20d956

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
# Release Notes
22

3-
## [Unreleased](https://github.com/laravel/horizon/compare/v5.6.2...master)
3+
## [Unreleased](https://github.com/laravel/horizon/compare/v5.6.3...master)
4+
5+
6+
## [v5.6.3 (2020-12-22)](https://github.com/laravel/horizon/compare/v5.6.2...v5.6.3)
7+
8+
### Changed
9+
- Considering queue config parameter 'after_commit' ([#948](https://github.com/laravel/horizon/pull/948))
410

511

612
## [v5.6.2 (2020-12-15)](https://github.com/laravel/horizon/compare/v5.6.1...v5.6.2)

src/Connectors/RedisConnector.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ public function connect(array $config)
2020
$this->redis, $config['queue'],
2121
Arr::get($config, 'connection', $this->connection),
2222
Arr::get($config, 'retry_after', 60),
23-
Arr::get($config, 'block_for', null)
23+
Arr::get($config, 'block_for', null),
24+
Arr::get($config, 'after_commit', null)
2425
);
2526
}
2627
}

0 commit comments

Comments
 (0)