Skip to content

Commit

Permalink
Fixed logical error while initialization in factory
Browse files Browse the repository at this point in the history
  • Loading branch information
vaibhav-yb committed Jul 17, 2023
1 parent 3c1e5a8 commit 8bdc6a3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public SnapshotChangeEventSource<YBPartition, YugabyteDBOffsetContext> getSnapsh
@Override
public StreamingChangeEventSource<YBPartition, YugabyteDBOffsetContext> getStreamingChangeEventSource() {
LOGGER.info("Transaction ordering enabled: {}", configuration.transactionOrdering());
if (configuration.transactionOrdering()) {
if (!configuration.transactionOrdering()) {
LOGGER.info("Instantiating Vanilla Streaming Source");
return new YugabyteDBStreamingChangeEventSource(
configuration,
Expand Down

0 comments on commit 8bdc6a3

Please sign in to comment.