From 17d2289974da75385c74bc34c47cbb9ce99c4a84 Mon Sep 17 00:00:00 2001 From: Bangara Raju Kottedi Date: Mon, 16 Feb 2026 20:35:22 +0530 Subject: [PATCH] fix: correct agent label for production environment in Jenkinsfile --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index a54e3ae..a539020 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -82,7 +82,7 @@ pipeline { def getAgentLabel() { if (env.BRANCH_NAME == 'prod') { - return 'oracle-node' + return 'oracle-prod' } else { return 'built-in' // for develop }