Compare commits

...

5 Commits

Author SHA1 Message Date
bvn13 167360566a Update for next development version 2022-06-30 12:07:02 +03:00
bvn13 8701dcbc0f Merge tag '1.5.5' into develop
Tag release
2022-06-30 12:06:59 +03:00
bvn13 f701f1c27d Merge branch 'release/1.5.5' 2022-06-30 12:06:58 +03:00
bvn13 7385f3a4cd Update versions for release 2022-06-30 12:06:33 +03:00
bvn13 0bcfa5ddb0 added feature toggling for enabling/disabling 2022-06-30 12:06:07 +03:00
3 changed files with 3 additions and 3 deletions

View File

@ -12,7 +12,7 @@ Add the following dependency to your `pom.xml`
<dependency>
<groupId>me.bvn13.kafka.health</groupId>
<artifactId>kafka-health-check</artifactId>
<version>1.5.4</version>
<version>1.5.5</version>
</dependency>
```

View File

@ -6,7 +6,7 @@
<groupId>me.bvn13.kafka.health</groupId>
<artifactId>kafka-health-check</artifactId>
<version>1.5.5-SNAPSHOT</version>
<version>1.5.6-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Kafka Health Check</name>

View File

@ -11,7 +11,7 @@ import org.springframework.context.annotation.Configuration;
@Configuration
@ConditionalOnClass(AbstractHealthIndicator.class)
//@ConditionalOnProperty(name = "kafka.health.enabled", havingValue = "true")
@ConditionalOnProperty(name = "kafka.health.enabled", havingValue = "true")
public class KafkaHealthAutoConfiguration {
@Bean