From: Nizamudeen A Date: Fri, 2 Sep 2022 05:21:41 +0000 (+0530) Subject: mgr/dashboard: s/master/main in applitools config X-Git-Tag: v18.0.0~115^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F47916%2Fhead;p=ceph.git mgr/dashboard: s/master/main in applitools config Signed-off-by: Nizamudeen A --- 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,