Skip to content

Commit 4ebf799

Browse files
committed
r support for timeout
1 parent ef8d7e2 commit 4ebf799

File tree

2 files changed

+16
-8
lines changed

2 files changed

+16
-8
lines changed

src/Controllers/WorkerController.php

+15-7
Original file line numberDiff line numberDiff line change
@@ -130,10 +130,9 @@ public function queue(Request $request, WorkerInterface $worker, Container $lara
130130
]);
131131

132132
$worker->process(
133-
$request->header('X-Aws-Sqsd-Queue'), $job, [
134-
'maxTries' => $this->tryToExtractAttempts($body),
133+
$request->header('X-Aws-Sqsd-Queue'), $job, array_merge([
135134
'delay' => 0
136-
]
135+
], $this->tryToExtractOptions($body))
137136
);
138137

139138
return $this->response([
@@ -145,14 +144,23 @@ public function queue(Request $request, WorkerInterface $worker, Container $lara
145144
* @param $input
146145
* @return int
147146
*/
148-
private function tryToExtractAttempts($input)
147+
private function tryToExtractOptions($input)
149148
{
150-
// Try to extract $tries integer value of the listener from the serialized job body
149+
$parameters = [
150+
'maxTries' => 1,
151+
'timeout' => 60
152+
];
153+
154+
// Try to extract listener class options from the serialized job body
151155
if (preg_match('/tries\\\\\\\\\\\\";i:(?<attempts>\d+);/', $input, $matches)) {
152-
return intval($matches['attempts']);
156+
$parameters['maxTries'] = intval($matches['attempts']);
157+
}
158+
159+
if (preg_match('/timeout\\\\\\\\\\\\";i:(?<timeout>\d+);/', $input, $matches)) {
160+
$parameters['timeout'] = intval($matches['timeout']);
153161
}
154162

155-
return 0;
163+
return $parameters;
156164
}
157165

158166
/**

src/Wrappers/Laravel7Worker.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public function __construct(Worker $worker, Cache $cache)
3131
*/
3232
public function process($queue, $job, array $options)
3333
{
34-
$workerOptions = new WorkerOptions('default', $options['delay'], 128, 60, 3, $options['maxTries']);
34+
$workerOptions = new WorkerOptions('default', $options['delay'], 128, $options['timeout'], 3, $options['maxTries']);
3535

3636
$this->worker->process(
3737
$queue, $job, $workerOptions

0 commit comments

Comments
 (0)