Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
a5af171e
Commit
a5af171e
authored
Nov 20, 2019
by
Kamil Trzciński
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add info about system-wide disable
parent
c7b3d08e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
doc/ci/pipelines.md
doc/ci/pipelines.md
+3
-2
No files found.
doc/ci/pipelines.md
View file @
a5af171e
...
@@ -470,12 +470,13 @@ To illustrate its life cycle:
...
@@ -470,12 +470,13 @@ To illustrate its life cycle:
1.
When the pipeline finished, its persistent ref is cleaned up in a background process.
1.
When the pipeline finished, its persistent ref is cleaned up in a background process.
NOTE:
**NOTE**
: At this moment, this feature is on by default and can be manually disabled
NOTE:
**NOTE**
: At this moment, this feature is on by default and can be manually disabled
by disabling
`depend_on_persistent_pipeline_ref`
feature flag. If you'
d b
e interested in
by disabling
`depend_on_persistent_pipeline_ref`
feature flag. If you'
r
e interested in
manually disabling this behavior, please ask the administrator
manually disabling this behavior, please ask the administrator
to execute the following commands in rails console.
to execute the following commands in rails console.
```
shell
```
shell
>
sudo
gitlab-rails console
# Login to Rails console of GitLab instance.
>
sudo
gitlab-rails console
# Login to Rails console of GitLab instance.
>
project
=
Project.find_by_full_path
(
'namespace/project-name'
)
# Get the project instance.
>
project
=
Project.find_by_full_path
(
'namespace/project-name'
)
# Get the project instance.
>
Feature.disable
(
:depend_on_persistent_pipeline_ref, project
)
# Disable the feature flag.
>
Feature.disable
(
:depend_on_persistent_pipeline_ref, project
)
# Disable the feature flag for specific project
>
Feature.disable
(
:depend_on_persistent_pipeline_ref
)
# Disable the feature flag system-wide
```
```
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment