From eea9d9f8b0322752967aa18539f645f9cd049db9 Mon Sep 17 00:00:00 2001 From: Max Fierke Date: Wed, 1 Nov 2023 21:56:23 -0500 Subject: [PATCH] Workaround segfault w/ pg & kerberos implementation on macOS --- config/database.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/config/database.yml b/config/database.yml index 1bc09f41..c05bfc73 100644 --- a/config/database.yml +++ b/config/database.yml @@ -20,6 +20,7 @@ default: &default # For details on connection pooling, see rails configuration guide # http://guides.rubyonrails.org/configuring.html#database-pooling pool: 5 + <% if RUBY_PLATFORM =~ /darwin/ %>gssencmode: disable<% end %> development: <<: *default