Skip to content

Commit 82678dd

Browse files
authored
fixes #284: Core srever will not rejoin cluster if Kakfa plugin is enabled. (#287)
1 parent 883ab4c commit 82678dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

producer/src/main/kotlin/streams/StreamsExtensionFactory.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ class StreamsEventRouterLifecycle(val db: GraphDatabaseAPI, val configuration: C
7272
private fun unregisterTransactionEventHandler() {
7373
if (streamsEventRouterConfiguration.enabled) {
7474
StreamsUtils.ignoreExceptions({ streamsConstraintsService.close() }, UninitializedPropertyAccessException::class.java)
75-
db.unregisterTransactionEventHandler(txHandler)
75+
StreamsUtils.ignoreExceptions({ db.unregisterTransactionEventHandler(txHandler) }, UninitializedPropertyAccessException::class.java)
7676
}
7777
}
7878

0 commit comments

Comments
 (0)