Skip to content

Commit d9df3f0

Browse files
committed
yes
1 parent b39f546 commit d9df3f0

3 files changed

Lines changed: 4 additions & 6 deletions

File tree

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ pipeline {
7272
echo 'Release to Prod'
7373
script {
7474
if (env.BRANCH_NAME == "master") {
75-
timeout(time: 10, unit: 'MINUTES') {
75+
timeout(time: 1, unit: 'HOURS') {
7676
input('Proceed for Prod ?')
7777
}
7878
}

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>com.example</groupId>
66
<artifactId>bermtec</artifactId>
7-
<version>1.0.0</version>
7+
<version>1.0.1</version>
88
<name>bermtec</name>
99
<packaging>jar</packaging>
1010
<description>bermtec 2022 with Spring Boot</description>
Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
package com.example.bermtec;
22

3-
import com.amazonaws.services.lambda.runtime.Context;
43

54
public class GreetingController {
6-
public String greeting(String input, Context context) {
7-
context.getLogger().log("User Input : " + input);
8-
return "Please Welcome Aboard " + input;
5+
public String greeting() {
6+
return "Please Welcome Aboard ";
97
}
108
}

0 commit comments

Comments
 (0)