Closed grvoyt closed 2 months ago
Your software version (Screenshot of your startup)
Detail description about this issue(error/log)
Mistake in code. Hhxsv5\LaravelS\Swoole\Process\CustomProcessTrait(103)
$msgKey = isset($config['msg_key']) ? $config['msg_key'] : 0;
As you declare in doc, must be:
$msgKey = isset($config['queue']['msg_key']) ? $config['queue']['msg_key'] : 0;
in Doc
'queue' => [ 'msg_key' => 0, 'mode' => 2, 'capacity' => 8192, ],
Thanks for your feedback.
when is the release of the certificates approximately?
Released v3.8.1.
Your software version (Screenshot of your startup)
Detail description about this issue(error/log)
Mistake in code. Hhxsv5\LaravelS\Swoole\Process\CustomProcessTrait(103)
$msgKey = isset($config['msg_key']) ? $config['msg_key'] : 0;
As you declare in doc, must be:
$msgKey = isset($config['queue']['msg_key']) ? $config['queue']['msg_key'] : 0;
in Doc