From 1e26648b8bb6b1ee92898fe9fad3eaed52f9711a Mon Sep 17 00:00:00 2001 From: wucongxing <815046773@qq.com> Date: Tue, 4 Apr 2023 20:20:23 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=8A=A0=E5=85=A5=E6=9C=AA?= =?UTF-8?q?=E6=8E=A5=E8=AF=8A=E5=8F=96=E6=B6=88=E8=AE=A2=E5=8D=95=E5=BB=B6?= =?UTF-8?q?=E8=BF=9F=E9=98=9F=E5=88=97=E6=97=B6=E9=97=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Amqp/Consumer/AssignDoctorConsumer.php | 2 +- app/Amqp/Consumer/SendStationMessageConsumer.php | 5 ----- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/app/Amqp/Consumer/AssignDoctorConsumer.php b/app/Amqp/Consumer/AssignDoctorConsumer.php index 8a56e50..c3da9a4 100644 --- a/app/Amqp/Consumer/AssignDoctorConsumer.php +++ b/app/Amqp/Consumer/AssignDoctorConsumer.php @@ -158,7 +158,7 @@ class AssignDoctorConsumer extends ConsumerMessage $data['order_inquiry_id'] = $order_inquiry['order_inquiry_id']; $message = new CancelUnInquiryOrdersDelayDirectProducer($data); // 快速/购药-5分钟 - $message->setDelayMs(1000 * 60 * 5); + $message->setDelayMs(1000 * 60 * 2); $producer = $this->container->get(Producer::class); $res = $producer->produce($message); if (!$res) { diff --git a/app/Amqp/Consumer/SendStationMessageConsumer.php b/app/Amqp/Consumer/SendStationMessageConsumer.php index 3fe48ff..ddb7a31 100644 --- a/app/Amqp/Consumer/SendStationMessageConsumer.php +++ b/app/Amqp/Consumer/SendStationMessageConsumer.php @@ -138,11 +138,6 @@ class SendStationMessageConsumer extends ConsumerMessage } } - // 消息标题 - if (!isset($push_data['notice_title']) && !isset($push_data['notice_brief_type'])){ - return false; - } - return true; }