Skip to content

Commit 3c4b148

Browse files
committed
chore: fix review comments
1 parent e59cbf4 commit 3c4b148

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

spring-boot-admin-docs/src/site/docs/server/01-server.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ spring:
4242
4343
### Other DiscoveryClients
4444
45-
Spring Boot Admin supports all other implementations of Spring Cloud’s `DiscoveryClient` ([Eureka](https://docs.spring.io/spring-cloud-netflix/docs/current/reference/html/#service-discovery-eureka-clients/), [Zookeeper](https://docs.spring.io/spring-cloud-zookeeper/docs/current/reference/html/#spring-cloud-zookeeper-discovery), [Consul](https://docs.spring.io/spring-cloud-consul/docs/current/reference/html/#spring-cloud-consul-discovery), [Kubernetes](https://docs.spring.io/spring-cloud-kubernetes/docs/current/reference/html/#discoveryclient-for-kubernetes), …​). An [example setup using Eureka](../installation-and-setup/index.md#using-spring-cloud-discovery) is shown above.
45+
Spring Boot Admin supports all other implementations of Spring Cloud’s `DiscoveryClient` ([Eureka](https://docs.spring.io/spring-cloud-netflix/docs/current/reference/html/#service-discovery-eureka-clients/), [Zookeeper](https://docs.spring.io/spring-cloud-zookeeper/docs/current/reference/html/#spring-cloud-zookeeper-discovery), [Consul](https://docs.spring.io/spring-cloud-consul/docs/current/reference/html/#spring-cloud-consul-discovery), [Kubernetes](https://docs.spring.io/spring-cloud-kubernetes/docs/current/reference/html/#discoveryclient-for-kubernetes), …​). You need to add it to the Spring Boot Admin Server and configure it properly. An [example setup using Eureka](/docs/installation-and-setup/index#using-spring-cloud-discovery) is shown above.
4646

4747
### Converting ServiceInstances
4848

@@ -96,14 +96,14 @@ eureka:
9696

9797
Spring Boot Admin Server supports cluster replication via Hazelcast. It is automatically enabled when a `HazelcastConfig`\- or `HazelcastInstance`\-Bean is present. You can also configure the Hazelcast instance to be persistent, to keep the status over restarts. Also have a look at the [Spring Boot support for Hazelcast](http://docs.spring.io/spring-boot/docs/current-SNAPSHOT/reference/htmlsingle/#boot-features-hazelcast/).
9898

99-
1. Add Hazelcast to your dependencies:
99+
1. Add Hazelcast to your dependencies:
100100
```xml title="pom.xml"
101101
<dependency>
102102
<groupId>com.hazelcast</groupId>
103103
<artifactId>hazelcast</artifactId>
104104
</dependency>
105105
```
106-
2. Instantiate a HazelcastConfig:
106+
2. Instantiate a HazelcastConfig:
107107
```java title="HazelcastConfig.java"
108108
@Bean
109109
public Config hazelcastConfig() {

spring-boot-admin-docs/src/site/docusaurus.config.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@ const config: Config = {
1414
baseUrl: process.env.VERSION ? `/${process.env.VERSION}/` : '/',
1515
organizationName: 'codecentric',
1616
projectName: 'spring-boot-admin',
17-
onBrokenLinks: 'warn',
18-
onBrokenMarkdownLinks: 'warn',
19-
onBrokenAnchors: 'warn',
2017
i18n: {
2118
defaultLocale: "en",
2219
locales: ["en"]

0 commit comments

Comments
 (0)