X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/8d6ffdf2fba938e7fbb5f128664d828d2669bcfe..e3ac17f8a8aa439e21a8bf56a571f91a671313f7:/apps/workbench/app/models/container_work_unit.rb diff --git a/apps/workbench/app/models/container_work_unit.rb b/apps/workbench/app/models/container_work_unit.rb index 88aab306ce..ed82f18036 100644 --- a/apps/workbench/app/models/container_work_unit.rb +++ b/apps/workbench/app/models/container_work_unit.rb @@ -99,12 +99,21 @@ class ContainerWorkUnit < ProxyWorkUnit end def log_collection - get_combined(:log) + if @proxied.is_a?(ContainerRequest) + get(:log_uuid) + else + get(:log) + end end def outputs items = [] - items << get_combined(:output) if get_combined(:output) + if @proxied.is_a?(ContainerRequest) + out = get(:output_uuid) + else + out = get(:output) + end + items << out if out items end