fix: correct agent label for production environment in Jenkinsfile
All checks were successful
bangararaju.kottedi.in/admin/admin-uat/pipeline/head This commit looks good

This commit is contained in:
Bangara Raju Kottedi 2026-02-16 20:35:22 +05:30
parent a0e56f6a89
commit 17d2289974

2
Jenkinsfile vendored
View File

@ -82,7 +82,7 @@ pipeline {
def getAgentLabel() {
if (env.BRANCH_NAME == 'prod') {
return 'oracle-node'
return 'oracle-prod'
} else {
return 'built-in' // for develop
}