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,