Donal McBreen

Results 171 comments of Donal McBreen

Closed in favour of https://github.com/rails/rails/pull/52790

Hey @dalton-cole! There's a PR to use a local registry here - https://github.com/basecamp/kamal/pull/1355. It starts the registry on the host you are deploying from and then uses an SSH tunnel...

In Kamal 1 we used the logging options from the app config for the proxy. But that's not something that we want to do anymore since Kamal 2 supports running...

#1152 will you allow you to remove the max size log opt, via `kamal proxy boot_config set`

Fixed by https://github.com/basecamp/kamal/pull/1508

@davidstosik - if you add a signal handler that dumps the thread backtraces, it might help track down where the test is hanging. Something like: ```ruby Signal.trap "SIGPROF" do Thread.list.each...

It's trying to connect to a local Postgres DB - maybe RAILS_ENV is not set correctly? Does this work? ```shell RAILS_ENV=production bundle exec rails db:migrate ```

Is the connection error maybe for one of the cable/queue/cache databases? `rails db:migrate` will try to connect to all the databases, but I suspect `rails c` only connects to the...