Skip to content

Commit cfcf0eb

Browse files
committed
wip
1 parent ef54f7e commit cfcf0eb

File tree

3 files changed

+1
-7
lines changed

3 files changed

+1
-7
lines changed

README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,6 @@ If you are using separate services for dispatching and handling tasks, you may w
7373

7474
// If the application only dispatches jobs
7575
'disable_task_handler' => env('STACKKIT_CLOUD_TASKS_DISABLE_TASK_HANDLER', false),
76-
77-
// If the application only handles jobs and is secured by already (e.g. requires Authentication)
78-
'disable_security_key_verification' => env('STACKKIT_CLOUD_TASKS_DISABLE_SECURITY_KEY_VERIFICATION', false),
7976
```
8077

8178
```dotenv

config/cloud-tasks.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,6 @@
66
// If the application only dispatches jobs
77
'disable_task_handler' => env('STACKKIT_CLOUD_TASKS_DISABLE_TASK_HANDLER', false),
88

9-
// If the application only handles jobs and is secured by already (e.g. requires Authentication)
10-
'disable_security_key_verification' => env('STACKKIT_CLOUD_TASKS_DISABLE_SECURITY_KEY_VERIFICATION', false),
11-
129
'dashboard' => [
1310
'enabled' => env('STACKKIT_CLOUD_TASKS_DASHBOARD_ENABLED', false),
1411
'password' => env('STACKKIT_CLOUD_TASKS_DASHBOARD_PASSWORD', 'MyPassword1!'),

src/CloudTasksQueue.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,9 +115,9 @@ protected function pushToCloudTasks($queue, $payload, $delay = 0)
115115

116116
$payload = $this->enrichPayloadWithInternalData(
117117
payload: $payload,
118+
queueName: $queue,
118119
taskName: $task->getName(),
119120
connectionName: $this->getConnectionName(),
120-
queueName: $queue,
121121
);
122122

123123
$this->addPayloadToTask($payload, $task);

0 commit comments

Comments
 (0)