[ARVADOS] updated: 270b1fc3ec06a24057301a1e49d1f46b6fed3ebe
git at public.curoverse.com
git at public.curoverse.com
Thu Nov 6 11:12:58 EST 2014
Summary of changes:
apps/workbench/app/views/pipeline_instances/_show_components.html.erb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
via 270b1fc3ec06a24057301a1e49d1f46b6fed3ebe (commit)
from f9a218aa75b9b88632d19d3c33c9c88c5fe39496 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
commit 270b1fc3ec06a24057301a1e49d1f46b6fed3ebe
Author: Tom Clegg <tom at curoverse.com>
Date: Thu Nov 6 11:12:58 2014 -0500
4084: Fix wrong state name: jobs are Running, pipelines are RunningOn[...].
diff --git a/apps/workbench/app/views/pipeline_instances/_show_components.html.erb b/apps/workbench/app/views/pipeline_instances/_show_components.html.erb
index 82f18e7..7735997 100644
--- a/apps/workbench/app/views/pipeline_instances/_show_components.html.erb
+++ b/apps/workbench/app/views/pipeline_instances/_show_components.html.erb
@@ -2,7 +2,7 @@
<%
job_uuids = @object.components.map { |k,j| j.is_a? Hash and j[:job].andand[:uuid] }.compact
- throttle = @object.state == 'Running' ? 5000 : 15000
+ throttle = @object.state.start_with?('Running') ? 5000 : 15000
%>
<div class="arv-log-refresh-control"
data-load-throttle="<%= throttle %>"
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list