You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We'll need more info and/or code to debug this further. Can you please create a repository with the command below, commit the code that reproduces the issue as one separate commit on the main/master branch and share the repository here?
Horizon Version
5.29
Laravel Version
10.33
PHP Version
8.2.25
Redis Driver
Predis
Redis Version
2.2
Database Driver & Version
No response
Description
I have extended the eloquent model using a DynamoDB connection with
Model::getKey()
value of an array.i.e.
['primary' => 1, 'sort_key' => 1]
The issue is that the tag creation process doesn't support converting an array value into a string when passing the model to the dispatch.
Error:
File: Tags.php
Method:
If it's an array it should allow concatenating the values to a string as the
getKey()
method has mixed data types.implode('-',$model->getKey())
Steps To Reproduce
Passing a model with an array of primary key to the Job
TestJob::dispatch($model);
The text was updated successfully, but these errors were encountered: