Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-05-29 21:08:26 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-05-29 21:08:26 +0300
commitb64a8161c9442d82897a341d6bf935dd3e748b06 (patch)
treeb9953db8607d1393aa8ac588a15f184dd8e183f6 /doc/development/import_export.md
parent6e33325c1458cb31b4d36a7eec817fa00ec3faaf (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/development/import_export.md')
-rw-r--r--doc/development/import_export.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/development/import_export.md b/doc/development/import_export.md
index bcba5582ddb..8daf4924f0f 100644
--- a/doc/development/import_export.md
+++ b/doc/development/import_export.md
@@ -54,8 +54,8 @@ class StuckImportJobsWorker
IMPORT_JOBS_EXPIRATION = 15.hours.to_i
def perform
- import_state_without_jid_count = mark_import_states_without_jid_as_failed!
- import_state_with_jid_count = mark_import_states_with_jid_as_failed!
+ imports_without_jid_count = mark_imports_without_jid_as_failed!
+ imports_with_jid_count = mark_imports_with_jid_as_failed!
...
```