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
path: root/doc
diff options
context:
space:
mode:
authorAchilleas Pipinellis <axilleas@axilleas.me>2016-06-27 17:34:48 +0300
committerAchilleas Pipinellis <axilleas@axilleas.me>2016-06-27 17:34:48 +0300
commitf48f7760c26e681e3f8b011c7c4e2b6ccfc9c3f5 (patch)
tree3830aa0674f24489dece921fba057e1aae66bd2b /doc
parent298b4850baa9e5bbee60b9cf16413ff92e3ce664 (diff)
parent12c688c103114f74c2bcb5fa6125ed6f91cae945 (diff)
Merge branch 'update-ee-downgrade-instructions' into 'master'
Update EE downgrade instructions to include JenkinsDeprecatedService EE now includes JenkinsDeprecatedService in addition to JenkinsService, so we need to clean both when downgrading from EE to CE. Closes #19133 [ci skip] See merge request !4916
Diffstat (limited to 'doc')
-rw-r--r--doc/downgrade_ee_to_ce/README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/downgrade_ee_to_ce/README.md b/doc/downgrade_ee_to_ce/README.md
index 3625c4191b8..a6d22e5a04a 100644
--- a/doc/downgrade_ee_to_ce/README.md
+++ b/doc/downgrade_ee_to_ce/README.md
@@ -44,13 +44,13 @@ to avoid getting this error, you need to remove all instances of the
**Omnibus Installation**
```
-$ sudo gitlab-rails runner "Service.where(type: 'JenkinsService').delete_all"
+$ sudo gitlab-rails runner "Service.where(type: ['JenkinsService', 'JenkinsDeprecatedService']).delete_all"
```
**Source Installation**
```
-$ bundle exec rails runner "Service.where(type: 'JenkinsService').delete_all" production
+$ bundle exec rails runner "Service.where(type: ['JenkinsService', 'JenkinsDeprecatedService']).delete_all" production
```
## Downgrade to CE