hhxsv5 / laravel-s

LaravelS is an out-of-the-box adapter between Laravel/Lumen and Swoole.
MIT License
3.84k stars 475 forks source link

Process queue config #478

Closed grvoyt closed 2 months ago

grvoyt commented 2 months ago
  1. Your software version (Screenshot of your startup)

    Software Version
    PHP 8.3
    Swoole 5+
    Laravel 10+
  2. 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, 
],
hhxsv5 commented 2 months ago

Thanks for your feedback.

grvoyt commented 2 months ago

when is the release of the certificates approximately?

Thanks for your feedback.

hhxsv5 commented 2 months ago

Released v3.8.1.