From b4b1df46ab3935406f863300448381d1317037e8 Mon Sep 17 00:00:00 2001 From: Konnor Rogers Date: Sat, 9 Nov 2024 01:26:08 -0500 Subject: [PATCH] Add additional possible error for roda server (#910) * Add additional possible error for roda server I had an error that didn't quite match the upgrade guide and didn't quite give enough info what was happening. * Update upgrade.md * Simplify error trace --------- Co-authored-by: Ayush Newatia --- bridgetown-website/src/_docs/installation/upgrade.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/bridgetown-website/src/_docs/installation/upgrade.md b/bridgetown-website/src/_docs/installation/upgrade.md index 0379a40d7..286df7f32 100644 --- a/bridgetown-website/src/_docs/installation/upgrade.md +++ b/bridgetown-website/src/_docs/installation/upgrade.md @@ -59,6 +59,16 @@ class RodaApp < Roda end ``` +Additionally, you may also hit the following error: + +``` +Exception raised: Errno::ENOENT +No such file or directory @ rb_sysopen - /tmp/pids/aux.pid +``` + +In which case, refer to the above fix for configuring your Roda server. + + ### Supporting Active Support Support 😏 Bridgetown v2 has removed a number of dependencies in the codebase on the Active Support gem (provided by the Rails framework). If that ends up causing problems with your codebase, you may need to require Active Support manually (and even Action View) in your `config/initializers.rb` file. [Here's a thread on GitHub](https://github.com/bridgetownrb/bridgetown/pull/881#issuecomment-2228693932) referencing this situation.