Skip to content

Commit

Permalink
Merge pull request #3 from joon6093/1.0.x
Browse files Browse the repository at this point in the history
Release v1.0.2
  • Loading branch information
joon6093 authored Nov 23, 2024
2 parents 7b9f98a + 7905dc4 commit 67ca896
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion handler/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

group = 'io.jeyong'
version = '1.0.0'
version = '1.0.2'

ext {
artifactName = 'k8s-sigterm-handler'
Expand Down
2 changes: 1 addition & 1 deletion jitpack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ before_install:

install:
- chmod +x ./handler/gradlew
- ./handler/gradlew build publishToMavenLocal
- ./handler/gradlew assemble publishToMavenLocal
2 changes: 1 addition & 1 deletion test/src/test/java/io/jeyong/test/SigtermListenerTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ void testSigtermHandling() throws Exception {
sendSigtermToContainer(container);

// then
Integer exitCode = container.getCurrentContainerInfo().getState().getExitCode();
Long exitCode = container.getCurrentContainerInfo().getState().getExitCodeLong();
assertThat(exitCode).isEqualTo(0);
}
}
Expand Down

0 comments on commit 67ca896

Please sign in to comment.