Import is not executed
The form works as expected, and I can see the message saying the %n records will be imported, but then nothing happens.
The db table job_batches has no executed jobs, and when I run
[COMMAND]
"artisan queue:work".
[/COMMAND]
Jobs are not executed and I can only see the message:
[MESSAGE]
INFO Processing jobs from the [default] queue.
[/MESSAGE]
My env file has
[ENV]
QUEUE_CONNECTION=sync
[/ENV]
Exporting works as expected
Thanks for any help.


21 Replies
Changed to database, but still no changes. Products are not imported, and DB table have no "finished_at" values., and no records are added to the "jobs" table
Could this be related? https://discord.com/channels/883083792112300104/1204703480502292510
It is not redis related because when I change queue_connection to database I get the same issue
Yep, seems to be related to filament. I tried v3.2.17 and there it works
Just confirmed 3.2.23 works as expected. 3.2.24 has this issue.
It's actually an issue with league CSV
require
league/csv
with the version v9.11.0 as v9.14.0
GitHub
Unpin fixed league/csv version · filamentphp/filament@0c8047c
Version 9.14 seems to be compatible with
ChunkIterator
.i dont think this is going to get fixed on their end, so im working on a fix for filament instead
should be fixed in the next version
GitHub
Release v3.2.26 · filamentphp/filament
What's Changed
Patches breaking changes in league/csv that cause imports to fail - thephpleague/csv@0ff3919.
Add zh_TW lang in database by @flamerecca in #11288
Added missing german translatio...
Blimey Thanks so much @Dan Harrin I had been fighting with this all day yesterday 😄
Hi there,
I'm facing the same issue here :/
NB: I'm using stancl/tenancy package


Any help ?
@BKF Dev Can you give any hint how you stancl/tenancy package to work with filament
Upgrading filament to v3.3.5 didn't fix the issue and it's still as described the by the poster. any instrcutions?
composer update
then run php artisan queue:work
Did it. I even removed the vendor an reinstall everything with Filament V3.3.5 and cleared everything + restarting all the servers and the worker still not starting the import job (other jobs works fine)
this is my artisan about output:

My job_batches table:

none of them is finished
Can you create a reproduction repo?