X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/968526e233fede288bf332aab724c170fe88345c..75967562d779337c0920841a0a66d130b4ba51a9:/apps/workbench/app/controllers/jobs_controller.rb diff --git a/apps/workbench/app/controllers/jobs_controller.rb b/apps/workbench/app/controllers/jobs_controller.rb index 08fb94d2f0..e5c71cb275 100644 --- a/apps/workbench/app/controllers/jobs_controller.rb +++ b/apps/workbench/app/controllers/jobs_controller.rb @@ -1,5 +1,12 @@ +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: AGPL-3.0 + class JobsController < ApplicationController - include JobsHelper + skip_around_action :require_thread_api_token, if: proc { |ctrl| + !Rails.configuration.Users.AnonymousUserToken.empty? and + 'show' == ctrl.action_name + } def generate_provenance(jobs) return if params['tab_pane'] != "Provenance" @@ -17,11 +24,11 @@ class JobsController < ApplicationController nodes[j[:script_version]] = {:uuid => j[:script_version]} end - Collection.where(uuid: collections).each do |c| + Collection.where(uuid: collections).with_count("none").each do |c| nodes[c[:portable_data_hash]] = c end - Collection.where(portable_data_hash: hashes).each do |c| + Collection.where(portable_data_hash: hashes).with_count("none").each do |c| nodes[c[:portable_data_hash]] = c end @@ -58,14 +65,9 @@ class JobsController < ApplicationController end def logs - @logs = Log.select(%w(event_type object_uuid event_at properties)) - .order('event_at DESC') - .filter([["event_type", "=", "stderr"], - ["object_uuid", "in", [@object.uuid]]]) - .limit(500) - .results - .to_a - .map{ |e| e.serializable_hash.merge({ 'prepend' => true }) } + @logs = @object. + stderr_log_query(Rails.configuration.Workbench.RunningJobLogRecordsToFetch). + map { |e| e.serializable_hash.merge({ 'prepend' => true }) } respond_to do |format| format.json { render json: @logs } end