fix:fix slip expire bucket bug in circuit breaker.

Haotian Zhang 1 year ago
parent 2ddaab8baf
commit 9789b531d2

@ -51,6 +51,7 @@ public class PolarisCircuitBreakerFeignIntegrationDisableFeignHystrixTest {
public void testFeignClient() {
assertThatThrownBy(() -> {
echoService.echo("test");
}).isInstanceOf(RuntimeException.class).hasMessageContaining("Load balancer does not have available server for client");
}).isInstanceOf(RuntimeException.class)
.hasMessageContaining("Load balancer does not have available server for client");
}
}

Loading…
Cancel
Save