From 5ab54478ac4711bc55a44c61158e6cbe86bfef21 Mon Sep 17 00:00:00 2001 From: swaggboi Date: Thu, 3 Mar 2022 15:51:08 -0500 Subject: [PATCH] Make sure number is an integer (just for clarity) --- config/puma.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/puma.rb b/config/puma.rb index 16821d1..cc61ebb 100644 --- a/config/puma.rb +++ b/config/puma.rb @@ -1,2 +1,2 @@ -threads(0, `nproc`.chomp || 5) +threads(0, `nproc`.chomp.to_i || 5) port 4567