File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
test/src/test/java/io/jeyong/test Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ plugins {
5
5
}
6
6
7
7
group = ' io.jeyong'
8
- version = ' 1.0.0 '
8
+ version = ' 1.0.2 '
9
9
10
10
ext {
11
11
artifactName = ' k8s-sigterm-handler'
Original file line number Diff line number Diff line change @@ -9,4 +9,4 @@ before_install:
9
9
10
10
install :
11
11
- chmod +x ./handler/gradlew
12
- - ./handler/gradlew build publishToMavenLocal
12
+ - ./handler/gradlew assemble publishToMavenLocal
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ void testSigtermHandling() throws Exception {
52
52
sendSigtermToContainer (container );
53
53
54
54
// then
55
- Integer exitCode = container .getCurrentContainerInfo ().getState ().getExitCode ();
55
+ Long exitCode = container .getCurrentContainerInfo ().getState ().getExitCodeLong ();
56
56
assertThat (exitCode ).isEqualTo (0 );
57
57
}
58
58
}
You can’t perform that action at this time.
0 commit comments