cartodb-4.42/lib/cartodb/sequel_connection_helper.rb

12 lines
475 B
Ruby
Raw Permalink Normal View History

2024-04-06 13:25:13 +08:00
module CartoDB
module SequelConnectionHelper
def close_sequel_connection(connection)
connection.disconnect
# Sequel keeps a list of all databases it has connected to that is never deleted
# We must manually delete the connection or it is never garbage collected, leaking memory
# See https://github.com/jeremyevans/sequel/blob/3.42.0/lib/sequel/database.rb#L10
Sequel.synchronize { Sequel::DATABASES.delete(connection) }
end
end
end