Mohamed Nimir

Results 11 comments of Mohamed Nimir

Hi, I would love to work on this as a first contribution to Manshar. Here is what i have in mind, thought to share before jumping in: - Use http://markevans.github.io/dragonfly/models/#validations...

Not at all @rosa , and thank you and the team for the great work ```shell mysql> show global variables like 'max_connections'; +-----------------+-------+ | Variable_name | Value | +-----------------+-------+ |...

Weird that I got same output: ```shell mysql> show global variables like 'net_read_timeout'; +------------------+-------+ | Variable_name | Value | +------------------+-------+ | net_read_timeout | 30 | +------------------+-------+ 1 row in set...

I can add more debug code to `solid_queue` if that can help but will need your input on where to put it in the gem files?

Ok, here is the fresh log file: ```log [ActiveJob] Enqueued Notifications::MailerJob (Job ID: 6d355475-26f4-4ed3-af32-9127e6632c81) to SolidQueue(dc_development_mailer) with arguments: #, :successfull [ActiveJob] ↳ (irb):1:in `' [ActiveJob] [Notifications::MailerJob] [6d355475-26f4-4ed3-af32-9127e6632c81] Performing Notifications::MailerJob (Job...

No errors ```shell ❯ rails c Loading development environment (Rails 7.1.2) irb(main):001> SolidQueue::Pause.all.pluck(:queue_name) => [] irb(main):002> SolidQueue::ReadyExecution.where("queue_name LIKE ?", "dc_development_%").distinct(:queue_name).pluck(:queue_name) => [] ```

Yes, starting the worker without forking worked like a charm and I didn't get any errors. ```log ❯ rails c Loading development environment (Rails 7.1.2) irb(main):001> worker = SolidQueue::Worker.new(polling_interval: 0.1,...

Hi @rosa , no worries and I appreciate your support I thought the issue might be with my version of MySQL so tried downgrading to v8.0 and also testing on...

I found a work around this morning but I am not sure how sustainable it is since it gives a depreciation warning Setting ```reconnect: true``` in `database.yaml` I don't get...

The `reconnect: true` work around fails when I am enqueuing a job from another job and I get the lost mysql connection error again! 😢 Update: I am starting to...