Skip to content

Commit

Permalink
make fixed channel health optional in order to be downwards compatible
Browse files Browse the repository at this point in the history
  • Loading branch information
ewoelfel committed Feb 3, 2020
1 parent 6303fcf commit f90cbe5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Release Notes

## 0.21.1
* Introduces FixedChannelHealthIndicator to measure health of asynchronously added eventsources

## 0.21.0
*synapse-core*
* Fixes configuration of default ObjectMapper in that unknown properties are ignored during
Expand All @@ -9,7 +12,6 @@
* Adds new NitriteStateRepository, including support for secondary indexes.
* Introduces MessageSender interface
* Adds a simple TeeMessageSender that is sending messages to multiple delegate MessageSenders.
* Introduces FixedChannelHealthIndicator to measure health of asynchronously added eventsources

## 0.20.0
*synapse-core*
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ subprojects {

compileJava.dependsOn(processResources)

version = '0.22.0-SNAPSHOT'
version = '0.21.1'
group = 'de.otto.synapse'

repositories {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
@ConditionalOnProperty(
prefix = "synapse.edison.health",
name = "fixedChannel.enabled",
havingValue = "true",
matchIfMissing = true)
havingValue = "true"
)
@ConditionalOnBean(EventSource.class)
public class FixedChannelHealthIndicator extends AbstractChannelHealthIndicator {

Expand Down

0 comments on commit f90cbe5

Please sign in to comment.