itsgoingd / clockwork

Clockwork - php dev tools in your browser - server-side component
https://underground.works/clockwork
MIT License
5.63k stars 323 forks source link

No connector for [azure] #483

Closed nomad23 closed 3 years ago

nomad23 commented 3 years ago

Hi,

Apologies for this if I'm doing this wrong. While using https://github.com/squigg/azure-queue-laravel for Azure Queues, clockwork cannot find the connector. I believe this might be linked to the issue raised here: https://github.com/vyuldashev/laravel-queue-rabbitmq/issues/32 for rabbitMQ in laravel 5.8 and it is the only reference I can find on the same.

All other providers ( redis, sync etc ) work well. Any suggestions for laravel 7?

nomad23 commented 3 years ago

Quick update:

After moving it down the list in bootstrap/cache/services, it works. It appears the issue is that when Clockwork is loaded before the queue provider, it doesn't capture the connection. Leaving this issue open for any feedback, questions or comments.

image

EDIT: Workaround To allow for CI/CD: I have added clockwork to the dont discover part of composer.json and added the Service Provider to config\app.php. image

itsgoingd commented 3 years ago

Hey, yeah I've run into this issue with a different package (https://github.com/itsgoingd/clockwork/issues/464), your workaround is exactly what I would suggest.

itsgoingd commented 3 years ago

Fixed in master (https://github.com/itsgoingd/clockwork/commit/2d7ec7587536ef31edd79965b11f4587217c29be), will be included in the next minor release.

nomad23 commented 3 years ago

Fixed in master (2d7ec75), will be included in the next minor release.

Thank you!!