[ARVADOS-WORKBENCH2] updated: 1.3.0-355-g347b8e60

Git user git at public.curoverse.com
Fri Feb 8 06:42:11 EST 2019


Summary of changes:
 src/store/processes/processes-actions.ts | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

       via  347b8e60a87c5c4f847fba0f644c7e0446098355 (commit)
      from  47f421fa743e2b4b09d4f0fbfbead00545e327d4 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.


commit 347b8e60a87c5c4f847fba0f644c7e0446098355
Author: Pawel Kowalczyk <pawel.kowalczyk at contractors.roche.com>
Date:   Fri Feb 8 12:42:01 2019 +0100

    refs #14815-remove-the-limit-of-subprocess-in-a-process-view
    
    Arvados-DCO-1.1-Signed-off-by: Pawel Kowalczyk <pawel.kowalczyk at contractors.roche.com>

diff --git a/src/store/processes/processes-actions.ts b/src/store/processes/processes-actions.ts
index 65a9a24c..6f1d23b0 100644
--- a/src/store/processes/processes-actions.ts
+++ b/src/store/processes/processes-actions.ts
@@ -53,9 +53,11 @@ export const loadSubprocesses = (containerUuid: string) =>
         }
     };
 
+const MAX_AMOUNT_OF_SUBPROCESSES = 10000;
+
 export const loadContainerRequests = (filters: string) =>
     async (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => {
-        const { items } = await services.containerRequestService.list({ filters });
+        const { items } = await services.containerRequestService.list({ filters, limit: MAX_AMOUNT_OF_SUBPROCESSES });
         dispatch<any>(updateResources(items));
         return items;
     };

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


hooks/post-receive
-- 




More information about the arvados-commits mailing list