dongmozhui3805 2016-03-02 15:38
浏览 382

Laravel 5.2删除Job中的队列

In Controller:

$smsData = [
            'number'    =>  $customer->phone,
            'message'   =>  'Test',
        ];

        $job = (new SendMessage($smsData))->delay(env('DELAY_QUEUE'))->onQueue(env('SMS_QUEUE'));

        $this->dispatch($job);

SendMessage class:

<?php

namespace App\Jobs;

use App\Jobs\Job;
use Illuminate\Queue\SerializesModels;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Contracts\Queue\ShouldQueue;
//use Guzzle\Http\Client;

class SendMessage extends Job implements ShouldQueue {

    protected $data, $url;

    use InteractsWithQueue, SerializesModels;

    public function __construct(array $data) {
        $this->data = $data;
        $this->url = 'https://reguler.zenziva.net/apps/smsapi.php?userkey=' . env('ZENZIVA_USERKEY') . '&passkey=' . env('ZENZIVA_PASSKEY');
    }

    public function handle() {
        $client = new \GuzzleHttp\Client();
        $smsData = $this->data;
        $res = $client->request('GET', $this->url . '&nohp=' . $smsData['number'] . '&pesan=' . $smsData['message']);
        if ($res->getStatusCode() !== 200) { \Log::info($res->getBody()); }
        $this->delete();
        return \Response::json(['type' => 'success'], 200);
    }

}

The SMS does go through, but the queue is not removed from iron (thus sending multiple same SMS, returning NO RESPONSE CODE AT ALL).

Weirdly, if I skip the guzzle request, the queue is removed from iron, thus the POST returns response 200.

Any idea how to fix this?

  • 写回答

0条回答 默认 最新

    报告相同问题?

    悬赏问题

    • ¥15 winform的chart曲线生成时有凸起
    • ¥15 msix packaging tool打包问题
    • ¥15 finalshell节点的搭建代码和那个端口代码教程
    • ¥15 用hfss做微带贴片阵列天线的时候分析设置有问题
    • ¥15 Centos / PETSc / PETGEM
    • ¥15 centos7.9 IPv6端口telnet和端口监控问题
    • ¥120 计算机网络的新校区组网设计
    • ¥20 完全没有学习过GAN,看了CSDN的一篇文章,里面有代码但是完全不知道如何操作
    • ¥15 使用ue5插件narrative时如何切换关卡也保存叙事任务记录
    • ¥20 海浪数据 南海地区海况数据,波浪数据