We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a18e737 commit 36a565aCopy full SHA for 36a565a
frameworks/Ruby/rack/pg_db.rb
@@ -19,11 +19,7 @@ class PgDb
19
20
def initialize(connection_string = nil, max_connections = 512)
21
@connection = Sequel.connect(connection_string, max_connections: max_connections, sql_log_level: :warning)
22
- if defined?(Falcon)
23
- Sequel.extension :fiber_concurrency if defined?(Falcon)
24
- else
25
- @connection.extension :async_thread_pool
26
- end
+ Sequel.extension :fiber_concurrency if defined?(Falcon)
27
28
prepare_statements
29
end
0 commit comments