Skip to content

Commit

Permalink
Set timeout in jenkins deploy for lambda insert
Browse files Browse the repository at this point in the history
  • Loading branch information
rohith1122 committed Feb 6, 2024
1 parent ae7813f commit f7ea0c3
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions build/jenkins/dev/Dev_Deployment.Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,13 @@ pipeline {
}
}
stage('Perform Insert Lambda function 1 of 5') {
steps {
script {
sh "make postcode-insert-etl PROFILE=${env.PROFILE}"
timeout(time: 15, unit: 'MINUTES') {
steps {
stage('Perform Insert Lambda function 4 of 5') {
steps {
sh "make postcode-insert-etl PROFILE=${env.PROFILE}"
}
}
}
}
}
Expand Down

0 comments on commit f7ea0c3

Please sign in to comment.