Skip to content

Commit 765fa10

Browse files
author
Andrei Nadyktov
committed
IGNITE-22530 Minor fix
1 parent 1866cb4 commit 765fa10

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

modules/cdc-ext/src/main/java/org/apache/ignite/cdc/conflictresolve/CacheVersionConflictResolverPluginProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ private boolean matchesFilters(String cacheName) {
218218
return matchesInclude && !matchesExclude;
219219
}
220220
catch (PatternSyntaxException e) {
221-
throw new IgniteException("Invalid cache regexp template.", e);
221+
throw new IgniteException("Invalid cache regexp template", e);
222222
}
223223
}
224224
}

modules/cdc-ext/src/main/java/org/apache/ignite/cdc/kafka/KafkaToIgniteCdcStreamerApplier.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ private boolean matchesFilters(String cacheName) {
317317
return matchesInclude && !matchesExclude;
318318
}
319319
catch (PatternSyntaxException e) {
320-
throw new IgniteException("Invalid cache regexp template.", e);
320+
throw new IgniteException("Invalid cache regexp template", e);
321321
}
322322
}
323323

0 commit comments

Comments
 (0)