François Beausoleil
François Beausoleil
I didn't see any specs to check the contents of a new application. I did run `rm -rf bookshelf && bundle exec exe/hanami new bookshelf` and it correctly created the...
I have the same issue: development does not run recurring tasks, as no scheduler starts. I added the following to `config/initializers/solid_queue.rb`: ```ruby SolidQueue.on_start do |supervisor| Rails.logger.info "SUPERVISOR START #{supervisor.inspect}" end...
One solution would be to fork or exec from within the development process and pass a different `HANAMI_ENV`. The biggest pain point at the moment is running specs when the...
Like Ben said, `--max-threads 98` means there will be 98 connections to the database and 98 OS threads processing jobs simultaneously. Due to the GVL (Global Virtual Machine Lock), only...