11710: fetching requesting containers
[arvados.git] / apps / workbench / app / views / work_units / _show_status.html.erb
index c06e82a815b0cc49462576c77897b0df1676bb62..b80d50dba287320c0a3f0e2031a71cd0603251aa 100644 (file)
@@ -1,7 +1,8 @@
 <%
     container_uuid = if @object.is_a?(Container) then @object.uuid elsif @object.is_a?(ContainerRequest) then @object.container_uuid end
     if container_uuid
-      reqs = ContainerRequest.where(requesting_container_uuid: container_uuid).results
+      cols = ContainerRequest.columns.map(&:name) - %w(id updated_at mounts)
+      reqs = ContainerRequest.select(cols).where(requesting_container_uuid: container_uuid).results
       load_preloaded_objects(reqs)
 
       child_cs = reqs.map(&:requesting_container_uuid).uniq