[ARVADOS-WORKBENCH2] updated: 2.4.0-26-g31cfb7ba

Git user git at public.arvados.org
Thu Apr 28 15:04:01 UTC 2022


Summary of changes:
 cypress.json                                       |  2 +-
 cypress/integration/collection.spec.js             | 30 +++++---
 cypress/integration/process.spec.js                | 54 ++++++++++++++
 cypress/support/commands.js                        | 52 +++++++++----
 docker/Dockerfile                                  |  5 +-
 src/common/custom-theme.ts                         | 13 +++-
 .../collection-panel-files.tsx                     |  8 +-
 src/components/data-explorer/data-explorer.tsx     | 48 +++++++++++-
 src/components/data-table/data-table.tsx           |  8 +-
 .../refresh-button/refresh-button.test.tsx         |  4 +-
 src/components/refresh-button/refresh-button.tsx   |  5 ++
 src/models/container.ts                            |  2 +
 src/models/runtime-status.ts                       | 11 +++
 .../collection-service/collection-service.test.ts  | 42 +++++++++++
 .../collection-service/collection-service.ts       |  8 +-
 src/store/collections/collection-upload-actions.ts | 12 +--
 src/store/process-panel/process-panel-actions.ts   |  4 +-
 src/store/processes/process.ts                     | 48 ++++++++----
 .../project-panel-middleware-service.ts            | 36 ++++-----
 .../resource-type-filters.test.ts                  | 21 +++++-
 .../resource-type-filters/resource-type-filters.ts | 32 ++++----
 .../run-process-panel-actions.test.ts              |  1 +
 .../run-process-panel/run-process-panel-actions.ts |  3 +-
 .../collection-panel-files.ts                      |  4 +-
 .../data-explorer/data-explorer.tsx                | 28 +++----
 .../data-explorer/renderers.test.tsx               | 75 ++++++++++++++++++-
 src/views-components/data-explorer/renderers.tsx   | 33 ++++++---
 .../dialog-forms/files-upload-collection-dialog.ts |  5 +-
 .../main-content-bar/main-content-bar.tsx          | 77 +++++++++----------
 .../process-runtime-status.tsx                     | 86 ++++++++++++++++++++++
 .../process-panel/process-information-card.tsx     | 65 ++++++++--------
 31 files changed, 610 insertions(+), 212 deletions(-)
 create mode 100644 src/models/runtime-status.ts
 create mode 100644 src/views-components/process-runtime-status/process-runtime-status.tsx

       via  31cfb7baa86544234c8b3fb59e74270839c987f0 (commit)
       via  43a3f5a12405b52e012097f19c5d25eaaf670ee4 (commit)
       via  fe2fcf6bb2af8938ea5d90d49d11b5b35971976d (commit)
       via  9062dd55d4d815d83d602d029830230ddb210524 (commit)
       via  9858ad74ab6f81c55c06c8f05b20ccd0ec67dd7a (commit)
       via  139421ac9ab6a7f60ad7762d1787d79533ce6831 (commit)
       via  3dd4b3bc31fea7f614290131d0ade5c0e0ffc595 (commit)
       via  08ac60f877d6495a748747a3a0d30ca9f0e289d5 (commit)
       via  03578e716a63e7c5e0ce75cb70d0aaa803c02a77 (commit)
       via  18425d0dfa8a652fef8377a6fb09018f55d2beec (commit)
       via  a9d377ba93f19f1b4ebb389d3baa23b26ef0d860 (commit)
       via  078bedef5794ee91497d4dd12157c86d6e490969 (commit)
       via  a5750c261be0991d8ebbe107115c9c5b01236f8d (commit)
       via  0d61292f1ce718f5cc252f45d6e220c70246c922 (commit)
       via  b812133ea0d9c9a4c52b200731deaba1045478e3 (commit)
       via  5de4c8e78a96433482063a53dfce0056902da654 (commit)
       via  dec2560060035f165662cff34b3a8916927a7ee6 (commit)
       via  890f88cf8828ae1d8dde8cb8c104226837187353 (commit)
       via  441e4724de4b3fb091a514cd1ac817c29952acd0 (commit)
       via  286c37bd2d4ea8322f20b9f04e74afd04d531afa (commit)
       via  8d374520f28b507e8934d57be46374044fb93e2f (commit)
       via  52b7cea2ae6e69e5ccfebb6a393ab6054f39c552 (commit)
       via  14b107de3fe4c29f4a37f1958bad99e2b82d2b24 (commit)
       via  c8a07de05867fe2e959eb0063a674a4f026f5b76 (commit)
       via  44d370d6e0e9e91dbc579e7d990667d52ad67b17 (commit)
       via  992852b9506bd3092bd052c681afca966478f88b (commit)
      from  8045851b13e03215f3f2c8be6d54b43bd4619862 (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 31cfb7baa86544234c8b3fb59e74270839c987f0
Author: Peter Amstutz <peter.amstutz at curii.com>
Date:   Thu Apr 28 11:03:20 2022 -0400

    Merge branch '19075-no-acr-reuse' refs #19075
    
    Arvados-DCO-1.1-Signed-off-by: Peter Amstutz <peter.amstutz at curii.com>

diff --git a/src/store/run-process-panel/run-process-panel-actions.test.ts b/src/store/run-process-panel/run-process-panel-actions.test.ts
index 7edc4cff..745be88f 100644
--- a/src/store/run-process-panel/run-process-panel-actions.test.ts
+++ b/src/store/run-process-panel/run-process-panel-actions.test.ts
@@ -131,6 +131,7 @@ describe("run-process-panel-actions", () => {
                 },
                 schedulingParameters: { max_run_time: undefined },
                 state: "Committed",
+                useExisting: false
             });
 
             // and
diff --git a/src/store/run-process-panel/run-process-panel-actions.ts b/src/store/run-process-panel/run-process-panel-actions.ts
index b421f072..adb5ade7 100644
--- a/src/store/run-process-panel/run-process-panel-actions.ts
+++ b/src/store/run-process-panel/run-process-panel-actions.ts
@@ -177,7 +177,8 @@ export const runProcess = async (dispatch: Dispatch<any>, getState: () => RootSt
             properties: {
                 workflowUuid: selectedWorkflow.uuid,
                 workflowName: selectedWorkflow.name
-            }
+            },
+            useExisting: false
         };
         const newProcess = await services.containerRequestService.create(newProcessData);
         dispatch(navigateTo(newProcess.uuid));

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


hooks/post-receive
-- 




More information about the arvados-commits mailing list