[arvados-workbench2] updated: 2.4.0-176-geb37d946
git repository hosting
git at public.arvados.org
Thu Aug 4 16:05:26 UTC 2022
Summary of changes:
src/store/subprocess-panel/subprocess-panel-middleware-service.ts | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
via eb37d946f9aba8c06ad1b4c4d209943e9ec10ff8 (commit)
from 8b4f3ecb7f75b676fd027736605de02dc2602045 (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 eb37d946f9aba8c06ad1b4c4d209943e9ec10ff8
Author: Stephen Smith <stephen at curii.com>
Date: Thu Aug 4 12:05:09 2022 -0400
19142: Avoid loading mounts in subprocess panel
Arvados-DCO-1.1-Signed-off-by: Stephen Smith <stephen at curii.com>
diff --git a/src/store/subprocess-panel/subprocess-panel-middleware-service.ts b/src/store/subprocess-panel/subprocess-panel-middleware-service.ts
index fb9b0e8b..dd303233 100644
--- a/src/store/subprocess-panel/subprocess-panel-middleware-service.ts
+++ b/src/store/subprocess-panel/subprocess-panel-middleware-service.ts
@@ -24,6 +24,7 @@ import { ProcessStatusFilter, buildProcessStatusFilters } from '../resource-type
import { ContainerRequestResource } from 'models/container-request';
import { progressIndicatorActions } from '../progress-indicator/progress-indicator-actions';
import { loadMissingProcessesInformation } from '../project-panel/project-panel-middleware-service';
+import { containerRequestFieldsNoMounts } from 'store/all-processes-panel/all-processes-panel-middleware-service';
export class SubprocessMiddlewareService extends DataExplorerMiddlewareService {
constructor(private services: ServiceRepository, id: string) {
@@ -40,7 +41,10 @@ export class SubprocessMiddlewareService extends DataExplorerMiddlewareService {
api.dispatch(progressIndicatorActions.START_WORKING(this.getId()));
const parentContainerRequest = await this.services.containerRequestService.get(parentContainerRequestUuid);
const containerRequests = await this.services.containerRequestService.list(
- { ...getParams(dataExplorer, parentContainerRequest) });
+ {
+ ...getParams(dataExplorer, parentContainerRequest) ,
+ select: containerRequestFieldsNoMounts
+ });
api.dispatch(progressIndicatorActions.PERSIST_STOP_WORKING(this.getId()));
api.dispatch(updateResources(containerRequests.items));
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list