[arvados-workbench2] created: 2.5.0-1-gbe74aae5

git repository hosting git at public.arvados.org
Thu Jan 5 14:18:21 UTC 2023


        at  be74aae5535a64c58d408d0345b0aae94758f983 (commit)


commit be74aae5535a64c58d408d0345b0aae94758f983
Author: Stephen Smith <stephen at curii.com>
Date:   Thu Jan 5 09:16:54 2023 -0500

    19900: Don't dispay errors when fetching process output collection, container, or runtime user
    
    Arvados-DCO-1.1-Signed-off-by: Stephen Smith <stephen at curii.com>

diff --git a/src/store/processes/processes-actions.ts b/src/store/processes/processes-actions.ts
index e4f35c1e..6ea1e6a9 100644
--- a/src/store/processes/processes-actions.ts
+++ b/src/store/processes/processes-actions.ts
@@ -28,15 +28,15 @@ export const loadProcess = (containerRequestUuid: string) =>
         dispatch<any>(updateResources([containerRequest]));
 
         if (containerRequest.outputUuid) {
-            const collection = await services.collectionService.get(containerRequest.outputUuid);
+            const collection = await services.collectionService.get(containerRequest.outputUuid, false);
             dispatch<any>(updateResources([collection]));
         }
 
         if (containerRequest.containerUuid) {
-            const container = await services.containerService.get(containerRequest.containerUuid);
+            const container = await services.containerService.get(containerRequest.containerUuid, false);
             dispatch<any>(updateResources([container]));
             if (container.runtimeUserUuid) {
-                const runtimeUser = await services.userService.get(container.runtimeUserUuid);
+                const runtimeUser = await services.userService.get(container.runtimeUserUuid, false);
                 dispatch<any>(updateResources([runtimeUser]));
             }
             return { containerRequest, container };

-----------------------------------------------------------------------


hooks/post-receive
-- 




More information about the arvados-commits mailing list