X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/f36fe36bd5e64b55b8699fae187c6accb678db2b..30e420e6cc547a12f2a775188f0429b3607da6c3:/apps/workbench/app/helpers/pipeline_instances_helper.rb?ds=sidebyside diff --git a/apps/workbench/app/helpers/pipeline_instances_helper.rb b/apps/workbench/app/helpers/pipeline_instances_helper.rb index 56e85dbd79..35d28d542b 100644 --- a/apps/workbench/app/helpers/pipeline_instances_helper.rb +++ b/apps/workbench/app/helpers/pipeline_instances_helper.rb @@ -22,7 +22,7 @@ module PipelineInstancesHelper pj end - def pipieline_log_history(job_uuids) + def pipeline_log_history(job_uuids) results = [] log_history = Log.where(event_type: 'stderr', @@ -82,17 +82,22 @@ module PipelineInstancesHelper end if pj[:job][:success] pj[:result] = 'complete' + pj[:labeltype] = 'success' pj[:complete] = true pj[:progress] = 1.0 elsif pj[:job][:finished_at] pj[:result] = 'failed' + pj[:labeltype] = 'danger' pj[:failed] = true elsif pj[:job][:started_at] pj[:result] = 'running' + pj[:labeltype] = 'primary' elsif pj[:job][:uuid] pj[:result] = 'queued' + pj[:labeltype] = 'default' else pj[:result] = 'none' + pj[:labeltype] = 'default' end pj[:job_id] = pj[:job][:uuid] pj[:script] = pj[:job][:script] || c[:script]