We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 883ab4c commit 82678ddCopy full SHA for 82678dd
producer/src/main/kotlin/streams/StreamsExtensionFactory.kt
@@ -72,7 +72,7 @@ class StreamsEventRouterLifecycle(val db: GraphDatabaseAPI, val configuration: C
72
private fun unregisterTransactionEventHandler() {
73
if (streamsEventRouterConfiguration.enabled) {
74
StreamsUtils.ignoreExceptions({ streamsConstraintsService.close() }, UninitializedPropertyAccessException::class.java)
75
- db.unregisterTransactionEventHandler(txHandler)
+ StreamsUtils.ignoreExceptions({ db.unregisterTransactionEventHandler(txHandler) }, UninitializedPropertyAccessException::class.java)
76
}
77
78
0 commit comments