mirror of
https://gitee.com/hyperf/hyperf.git
synced 2024-11-29 18:27:44 +08:00
Use Hyperf\Utils\Coroutine::create()
instead of Swoole\Coroutine::create()
for Concurrent. (#2765)
* Update Concurrent.php * Update CHANGELOG-2.0.md
This commit is contained in:
parent
27bd358783
commit
28ed50180b
@ -4,6 +4,10 @@
|
||||
|
||||
- [#2752](https://github.com/hyperf/hyperf/pull/2752) Support route `options` for `@AutoController` `@Controller` and `@Mapping`.
|
||||
|
||||
## Changed
|
||||
|
||||
- [#2765](https://github.com/hyperf/hyperf/pull/2765) Use `Hyperf\Utils\Coroutine::create()` instead of `Swoole\Coroutine::create()` for `Concurrent`.
|
||||
|
||||
# v2.0.17 - 2020-11-02
|
||||
|
||||
## Added
|
||||
|
@ -14,7 +14,7 @@ namespace Hyperf\Utils\Coroutine;
|
||||
use Hyperf\Contract\StdoutLoggerInterface;
|
||||
use Hyperf\ExceptionHandler\Formatter\FormatterInterface;
|
||||
use Hyperf\Utils\ApplicationContext;
|
||||
use Swoole\Coroutine;
|
||||
use Hyperf\Utils\Coroutine;
|
||||
use Swoole\Coroutine\Channel;
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user