Skip to content

Commit 9d78b65

Browse files
authored
Merge pull request #1 from exploit-org/alex/public-paths
Fix availability for another TKeeper's peers.
2 parents ad30db5 + e03bd08 commit 9d78b65

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ dependencies {
5959
}
6060

6161
group 'org.exploit'
62-
version '1.0.0-RC1'
62+
version '1.0.0-RC2'
6363

6464
java {
6565
sourceCompatibility = JavaVersion.VERSION_17

src/main/kotlin/org/exploit/keeper/filter/MachineAuthFilter.kt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@ class MachineAuthFilter(
2020
): ContainerRequestFilter {
2121
private val publicPaths = listOf(
2222
"/v1/keeper/system/health",
23-
"/v1/keeper/system/ready"
23+
"/v1/keeper/system/ready",
24+
"/v1/keeper/ping",
25+
"/v1/keeper/peerId"
2426
)
2527

2628
private val matcher = AntPathMatcher.of("/v1/keeper/**")

0 commit comments

Comments
 (0)