summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/views/admin/runners/_runner.html.haml5
-rw-r--r--app/views/admin/runners/index.html.haml1
-rw-r--r--app/views/projects/runners/_runner.html.haml2
3 files changed, 0 insertions, 8 deletions
diff --git a/app/views/admin/runners/_runner.html.haml b/app/views/admin/runners/_runner.html.haml
index fc6ad6dfe95..e1cee584929 100644
--- a/app/views/admin/runners/_runner.html.haml
+++ b/app/views/admin/runners/_runner.html.haml
@@ -19,11 +19,6 @@
%td
= runner.ip_address
%td
- - if runner.defines_maximum_job_timeout?
- = runner.maximum_job_timeout_human_readable
- - else
- n/a
- %td
- if runner.shared?
n/a
- else
diff --git a/app/views/admin/runners/index.html.haml b/app/views/admin/runners/index.html.haml
index a0c7d8f5fa9..9f13dbbbd82 100644
--- a/app/views/admin/runners/index.html.haml
+++ b/app/views/admin/runners/index.html.haml
@@ -61,7 +61,6 @@
%th Description
%th Version
%th IP Address
- %th Maximum timeout
%th Projects
%th Jobs
%th Tags
diff --git a/app/views/projects/runners/_runner.html.haml b/app/views/projects/runners/_runner.html.haml
index 91d6b172566..6376496ee1a 100644
--- a/app/views/projects/runners/_runner.html.haml
+++ b/app/views/projects/runners/_runner.html.haml
@@ -36,8 +36,6 @@
- if runner.description.present?
%p.runner-description
= runner.description
- - if runner.defines_maximum_job_timeout?
- %p Maximum job timeout: #{runner.maximum_job_timeout_human_readable}
- if runner.tag_list.present?
%p
- runner.tag_list.sort.each do |tag|