1 Commits

Author SHA1 Message Date
rajukottedi 17d2289974 fix: correct agent label for production environment in Jenkinsfile
bangararaju.kottedi.in/admin/admin-uat/pipeline/head This commit looks good
2026-02-16 20:35:22 +05:30
Vendored
+1 -1
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
}