We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c61ed86 commit cbde491Copy full SHA for cbde491
devserve/src/main/kotlin/viaduct/devserve/DevServeServer.kt
@@ -34,7 +34,6 @@ import java.net.URLClassLoader
34
* Provides:
35
* - GraphQL endpoint at POST /graphql
36
* - GraphiQL IDE at GET /graphiql
37
- * - Health check at GET /health
38
* - Hot-reload via SIGHUP signal
39
*/
40
class DevServeServer(
@@ -221,11 +220,6 @@ class DevServeServer(
221
220
}
222
223
routing {
224
- // Health check endpoint
225
- get("/health") {
226
- call.respondText("OK", ContentType.Text.Plain, HttpStatusCode.OK)
227
- }
228
-
229
// Reload endpoint (alternative to SIGHUP)
230
post("/reload") {
231
loggerRef.info("Reload requested via HTTP")
0 commit comments