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
4cc34c63
Commit
4cc34c63
authored
Sep 28, 2020
by
Kamil Trzciński
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove `ci_job_heartbeats_runner` feature flag
This is no longer being used
parent
3fd9cc8a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1 addition
and
14 deletions
+1
-14
config/feature_flags/development/ci_job_heartbeats_runner.yml
...ig/feature_flags/development/ci_job_heartbeats_runner.yml
+0
-7
lib/api/helpers/runner.rb
lib/api/helpers/runner.rb
+1
-3
lib/gitlab/ci/features.rb
lib/gitlab/ci/features.rb
+0
-4
No files found.
config/feature_flags/development/ci_job_heartbeats_runner.yml
deleted
100644 → 0
View file @
3fd9cc8a
---
name
:
ci_job_heartbeats_runner
introduced_by_url
:
rollout_issue_url
:
group
:
type
:
development
default_enabled
:
true
lib/api/helpers/runner.rb
View file @
4cc34c63
...
...
@@ -51,9 +51,7 @@ module API
job_forbidden!
(
job
,
'Job is not running'
)
unless
job
.
running?
end
if
Gitlab
::
Ci
::
Features
.
job_heartbeats_runner?
(
job
.
project
)
job
.
runner
&
.
heartbeat
(
get_runner_ip
)
end
job
.
runner
&
.
heartbeat
(
get_runner_ip
)
job
end
...
...
lib/gitlab/ci/features.rb
View file @
4cc34c63
...
...
@@ -10,10 +10,6 @@ module Gitlab
::
Feature
.
enabled?
(
:ci_artifacts_exclude
,
default_enabled:
true
)
end
def
self
.
job_heartbeats_runner?
(
project
)
::
Feature
.
enabled?
(
:ci_job_heartbeats_runner
,
project
,
default_enabled:
true
)
end
def
self
.
instance_variables_ui_enabled?
::
Feature
.
enabled?
(
:ci_instance_variables_ui
,
default_enabled:
true
)
end
...
...
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