Skip to content

Commit

Permalink
[release] test 1.7.10-test
Browse files Browse the repository at this point in the history
Signed-off-by: munishchouhan <[email protected]>
  • Loading branch information
munishchouhan committed Jun 4, 2024
1 parent dd195de commit 7feb9be
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
1.7.9
1.7.10-test

Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ import io.micronaut.context.annotation.Value
import io.micronaut.http.HttpResponse
import io.micronaut.http.annotation.Controller
import io.micronaut.http.annotation.Get
import io.micronaut.http.annotation.QueryValue
import io.micronaut.scheduling.TaskExecutors
import io.micronaut.scheduling.annotation.ExecuteOn
import io.seqera.wave.api.ServiceInfo
Expand Down Expand Up @@ -62,4 +63,10 @@ class ServiceInfoController {
: HttpResponse.badRequest()
}

@Get("/test")
HttpResponse test(@QueryValue String endpoint) {
log.warn "Endpoint '$endpoint' is exceeding the timeout counter limit"
return HttpResponse.ok("OK")
}

}

0 comments on commit 7feb9be

Please sign in to comment.