Commit 667005d5 authored by Sean McGivern's avatar Sean McGivern

Merge branch 'dm-fix-mysql-failure' into 'master'

Fix MySQL build failure

Closes #32106

See merge request !11277
parents 934e8d1a 965b4176
......@@ -30,7 +30,7 @@ class CleanupNamespacelessPendingDeleteProjects < ActiveRecord::Migration
private
def pending_delete_batch
connection.exec_query(find_batch).map{ |row| row['id'] }
connection.exec_query(find_batch).map{ |row| row['id'].to_i }
end
BATCH_SIZE = 5000
......
......@@ -15,7 +15,7 @@ describe CleanupNamespacelessPendingDeleteProjects do
project = build(:empty_project, pending_delete: true, namespace_id: nil)
project.save(validate: false)
expect(NamespacelessProjectDestroyWorker).to receive(:bulk_perform_async).with([[project.id.to_s]])
expect(NamespacelessProjectDestroyWorker).to receive(:bulk_perform_async).with([[project.id]])
described_class.new.up
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