From 8b573c94895dc0ac0e1d9d59cf3e8745e8b539ca Mon Sep 17 00:00:00 2001 From: GitLab Bot Date: Thu, 17 Dec 2020 11:59:07 +0000 Subject: Add latest changes from gitlab-org/gitlab@13-7-stable-ee --- .../factories/gitlab/database/reindexing/reindex_action.rb | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 spec/factories/gitlab/database/reindexing/reindex_action.rb (limited to 'spec/factories/gitlab/database/reindexing/reindex_action.rb') diff --git a/spec/factories/gitlab/database/reindexing/reindex_action.rb b/spec/factories/gitlab/database/reindexing/reindex_action.rb new file mode 100644 index 00000000000..4b558286463 --- /dev/null +++ b/spec/factories/gitlab/database/reindexing/reindex_action.rb @@ -0,0 +1,14 @@ +# frozen_string_literal: true + +FactoryBot.define do + factory :reindex_action, class: 'Gitlab::Database::Reindexing::ReindexAction' do + association :index, factory: :postgres_index + + action_start { Time.now - 10.minutes } + action_end { Time.now - 5.minutes } + ondisk_size_bytes_start { 2.megabytes } + ondisk_size_bytes_end { 1.megabytes } + state { Gitlab::Database::Reindexing::ReindexAction.states[:finished] } + index_identifier { index.identifier } + end +end -- cgit v1.2.3