Commit 887aeefb authored by Lin Jen-Shin's avatar Lin Jen-Shin

Use IS FALSE for both pg and mysql; Handle connections

by ourselves so that even if the setting has 1 connection
we could still use more connections.
parent 25cd5aa2
......@@ -7,14 +7,14 @@ class RemoveInactiveDefaultEmailServices < ActiveRecord::Migration
builds_service = spawn <<-SQL.strip_heredoc
DELETE FROM services
WHERE type = 'BuildsEmailService'
AND active = #{false_value}
AND active IS FALSE
AND properties = '{"notify_only_broken_builds":true}';
SQL
pipelines_service = spawn <<-SQL.strip_heredoc
DELETE FROM services
WHERE type = 'PipelinesEmailService'
AND active = #{false_value}
AND active IS FALSE
AND properties = '{"notify_only_broken_pipelines":true}';
SQL
......@@ -25,17 +25,19 @@ class RemoveInactiveDefaultEmailServices < ActiveRecord::Migration
def spawn(query)
Thread.new do
ActiveRecord::Base.connection_pool.with_connection do
ActiveRecord::Base.connection.execute(query)
with_connection do |connection|
connection.execute(query)
end
end
end
def quote(value)
ActiveRecord::Base.connection.quote(value)
end
def with_connection
pool = ActiveRecord::Base.establish_connection
connection = pool.connection
yield(connection)
def false_value
quote(false)
ensure
connection.close
end
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment