-
-
Notifications
You must be signed in to change notification settings - Fork 39
-
@marickvantuil shouldn't the task be returned from Google's API be the one we send via the event bus, rather than the prototype we send to the API?
At the moment it is:
$createdTask = CloudTasksApi::createTask($queueName, $task);
event((new TaskCreated)->queue($queue)->task($task));
Formerly it was
$createdTask = CloudTasksApi::createTask($queueName, $task);
event((new TaskCreated)->queue($queue)->task($createdTask));
event((new TaskCreated)->queue($queue)->task($task));
Beta Was this translation helpful? Give feedback.
All reactions
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment