From cf6feab17927c78fdf5e8fbfc83658d80c9914a7 Mon Sep 17 00:00:00 2001 From: Laura Flores Date: Thu, 14 Apr 2022 20:42:05 +0000 Subject: [PATCH] mgr/dashboard/frontend: fix cypress env password "LOGIN_PASSWORD" should be "LOGIN_PWD". Bug introduced in e9128c4. Fixes: https://tracker.ceph.com/issues/55323 Signed-off-by: Laura Flores --- src/pybind/mgr/dashboard/frontend/cypress.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pybind/mgr/dashboard/frontend/cypress.json b/src/pybind/mgr/dashboard/frontend/cypress.json index fa21e890f71..0de1008cb54 100644 --- a/src/pybind/mgr/dashboard/frontend/cypress.json +++ b/src/pybind/mgr/dashboard/frontend/cypress.json @@ -21,6 +21,6 @@ "retries": 1, "env": { "LOGIN_USER": "admin", - "LOGIN_PASSWORD": "admin" + "LOGIN_PWD": "admin" } } -- 2.39.5