summaryrefslogtreecommitdiff
path: root/app/workers
diff options
context:
space:
mode:
authorGabriel Mazetto <brodock@gmail.com>2019-01-15 04:30:55 +0100
committerGabriel Mazetto <brodock@gmail.com>2019-01-25 20:26:35 +0100
commitcf52488ccba8913027334c16892ee1fce1241169 (patch)
treee7d0b15ba32d9a984a86a9c356c5382647123e48 /app/workers
parentc2c34eba62f26bed8cad8b07934e14b4519eef7c (diff)
downloadgitlab-ce-cf52488ccba8913027334c16892ee1fce1241169.tar.gz
Move MigrationService to HashedStorage module
This is part of the refactor to include a RollbackService into HashedStorage module
Diffstat (limited to 'app/workers')
-rw-r--r--app/workers/project_migrate_hashed_storage_worker.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/workers/project_migrate_hashed_storage_worker.rb b/app/workers/project_migrate_hashed_storage_worker.rb
index 4c6339f7701..c3cdf102382 100644
--- a/app/workers/project_migrate_hashed_storage_worker.rb
+++ b/app/workers/project_migrate_hashed_storage_worker.rb
@@ -12,7 +12,7 @@ class ProjectMigrateHashedStorageWorker
uuid = lease_for(project_id).try_obtain
if uuid
- ::Projects::HashedStorageMigrationService.new(project, old_disk_path || project.full_path, logger: logger).execute
+ ::Projects::HashedStorage::MigrationService.new(project, old_disk_path || project.full_path, logger: logger).execute
else
false
end