Merge branch 'develop' into fix/cw-4085

This commit is contained in:
Muhsin Keloth
2025-03-18 13:28:44 +05:30
committed by GitHub
2 changed files with 4 additions and 1 deletions
@@ -271,7 +271,7 @@ const evenClass = [
ghost-class="ghost"
handle=".drag-handle"
item-key="key"
class="last:rounded-b-lg overflow-hidden"
class="last:rounded-b-lg"
:class="evenClass"
@start="dragging = true"
@end="onDragEnd"
+3
View File
@@ -5,6 +5,9 @@ default: &default
port: <%= ENV.fetch('POSTGRES_PORT', '5432') %>
# ref: https://github.com/mperham/sidekiq/issues/2985#issuecomment-531097962
pool: <%= Sidekiq.server? ? ENV.fetch('SIDEKIQ_CONCURRENCY', 10) : ENV.fetch('RAILS_MAX_THREADS', 5) %>
# frequency in seconds to periodically run the Reaper, which attempts
# to find and recover connections from dead threads
reaping_frequency: <%= ENV.fetch('DB_POOL_REAPING_FREQUENCY', 30) %>
variables:
# we are setting this value to be close to the racktimeout value. we will iterate and reduce this value going forward
statement_timeout: <%= ENV["POSTGRES_STATEMENT_TIMEOUT"] || "14s" %>