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

This commit is contained in:
2026-02-16 20:35:22 +05:30
parent a0e56f6a89
commit 17d2289974
Vendored
+1 -1
View File
@@ -82,7 +82,7 @@ pipeline {
def getAgentLabel() { def getAgentLabel() {
if (env.BRANCH_NAME == 'prod') { if (env.BRANCH_NAME == 'prod') {
return 'oracle-node' return 'oracle-prod'
} else { } else {
return 'built-in' // for develop return 'built-in' // for develop
} }