From c3d0e6c8e8a2cbe010271003ede137f81a65bd09 Mon Sep 17 00:00:00 2001 From: Nizamudeen A Date: Fri, 2 Sep 2022 10:51:41 +0530 Subject: [PATCH] mgr/dashboard: s/master/main in applitools config Signed-off-by: Nizamudeen A --- src/pybind/mgr/dashboard/frontend/applitools.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pybind/mgr/dashboard/frontend/applitools.config.js b/src/pybind/mgr/dashboard/frontend/applitools.config.js index 4aaedf23e5a..18695d303e6 100644 --- a/src/pybind/mgr/dashboard/frontend/applitools.config.js +++ b/src/pybind/mgr/dashboard/frontend/applitools.config.js @@ -3,7 +3,7 @@ const fs = require('fs'); // Read the contents of the ceph_release file to retrieve // the branch const cephRelease = fs.readFileSync('../../../../ceph_release', 'utf8').split('\n'); -const branch = cephRelease[2] === 'dev' ? 'master' : cephRelease[1]; +const branch = cephRelease[2] === 'dev' ? 'main' : cephRelease[1]; module.exports = { appName: 'Ceph Dashboard', batchId: process.env.APPLITOOLS_BATCH_ID,