composer
This commit is contained in:
@@ -7,13 +7,13 @@ require_once __DIR__ . '/../support/bootstrap.php';
|
||||
use PhpAmqpLib\Connection\AMQPStreamConnection;
|
||||
use support\Log;
|
||||
use Webman\RedisQueue\Redis;
|
||||
|
||||
// 申请新短信模版/营销短信发送
|
||||
$host = config('cons.mq.host');
|
||||
$port = config('cons.mq.port');
|
||||
$user = config('cons.mq.user');
|
||||
$password = config('cons.mq.password');
|
||||
$queue = config('cons.mq.queue_t') . '-apply.sms.temp';
|
||||
define('AMQP_DEBUG', true);
|
||||
|
||||
// 防止空闲时间断线必须设置心跳
|
||||
$connection = new AMQPStreamConnection($host, $port, $user, $password,
|
||||
@@ -57,6 +57,7 @@ use Webman\RedisQueue\Redis;
|
||||
};
|
||||
$rabbit_channel->basic_consume($queue, '', false, false, false, false, $callback);
|
||||
while ($rabbit_channel->is_consuming()) {
|
||||
Log::info('apply.sms.temp-MQ准备调用wait');
|
||||
$rabbit_channel->wait();
|
||||
}
|
||||
$rabbit_channel->close();
|
||||
|
||||
Reference in New Issue
Block a user