From be74aae5535a64c58d408d0345b0aae94758f983 Mon Sep 17 00:00:00 2001 From: Stephen Smith Date: Thu, 5 Jan 2023 09:16:54 -0500 Subject: [PATCH] 19900: Don't dispay errors when fetching process output collection, container, or runtime user Arvados-DCO-1.1-Signed-off-by: Stephen Smith --- src/store/processes/processes-actions.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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(updateResources([containerRequest])); if (containerRequest.outputUuid) { - const collection = await services.collectionService.get(containerRequest.outputUuid); + const collection = await services.collectionService.get(containerRequest.outputUuid, false); dispatch(updateResources([collection])); } if (containerRequest.containerUuid) { - const container = await services.containerService.get(containerRequest.containerUuid); + const container = await services.containerService.get(containerRequest.containerUuid, false); dispatch(updateResources([container])); if (container.runtimeUserUuid) { - const runtimeUser = await services.userService.get(container.runtimeUserUuid); + const runtimeUser = await services.userService.get(container.runtimeUserUuid, false); dispatch(updateResources([runtimeUser])); } return { containerRequest, container }; -- 2.30.2