Fix wrong health check endpoint to OAP backend (#12597)
This commit is contained in:
parent
87b73cb7f7
commit
9d0cb9e28e
|
|
@ -58,7 +58,7 @@ public final class OapProxyService extends AbstractHttpService {
|
||||||
private static WebClient newLoadBalancingClient(EndpointGroup oapGroup) {
|
private static WebClient newLoadBalancingClient(EndpointGroup oapGroup) {
|
||||||
final HealthCheckedEndpointGroup healthCheckedGroup =
|
final HealthCheckedEndpointGroup healthCheckedGroup =
|
||||||
HealthCheckedEndpointGroup
|
HealthCheckedEndpointGroup
|
||||||
.builder(oapGroup, "/internal/l7check")
|
.builder(oapGroup, "/healthcheck")
|
||||||
.protocol(SessionProtocol.HTTP)
|
.protocol(SessionProtocol.HTTP)
|
||||||
.retryInterval(Duration.ofSeconds(10))
|
.retryInterval(Duration.ofSeconds(10))
|
||||||
.build();
|
.build();
|
||||||
|
|
|
||||||
|
|
@ -74,6 +74,7 @@
|
||||||
* Bump up dependencies to fix CVEs.
|
* Bump up dependencies to fix CVEs.
|
||||||
* Add a loading view for initialization page.
|
* Add a loading view for initialization page.
|
||||||
* Fix a bug for selectors when clicking the refresh icon.
|
* Fix a bug for selectors when clicking the refresh icon.
|
||||||
|
* Fix health check to OAP backend.
|
||||||
|
|
||||||
#### Documentation
|
#### Documentation
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue