From 4da9314a82505cd016803f806f96e5714cc59f0a Mon Sep 17 00:00:00 2001 From: Lucas Di Pentima Date: Tue, 10 Aug 2021 14:27:05 -0300 Subject: [PATCH] 17982: Updates integration test cluster's config file to make tests work again. Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima --- src/views/ssh-key-panel/ssh-key-panel.tsx | 2 +- tools/arvados_config.yml | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/views/ssh-key-panel/ssh-key-panel.tsx b/src/views/ssh-key-panel/ssh-key-panel.tsx index 672b1bf3..24ca3468 100644 --- a/src/views/ssh-key-panel/ssh-key-panel.tsx +++ b/src/views/ssh-key-panel/ssh-key-panel.tsx @@ -11,7 +11,7 @@ import { SshKeyPanelRoot, SshKeyPanelRootDataProps, SshKeyPanelRootActionProps } const mapStateToProps = (state: RootState): SshKeyPanelRootDataProps => { const sshKeys = state.auth.sshKeys.filter((key) => { - return key.authorizedUserUuid == (state.auth.user ? state.auth.user.uuid : null); + return key.authorizedUserUuid === (state.auth.user ? state.auth.user.uuid : null); }); return { diff --git a/tools/arvados_config.yml b/tools/arvados_config.yml index 963da48d..3fcd6119 100644 --- a/tools/arvados_config.yml +++ b/tools/arvados_config.yml @@ -17,6 +17,11 @@ Clusters: Login: PAM: Enable: true + StorageClasses: + default: + Default: true + foo: {} + bar: {} Volumes: zzzzz-nyw5e-000000000000000: StorageClasses: -- 2.30.2