Skip to content

Commit

Permalink
Fix typo in log message.
Browse files Browse the repository at this point in the history
Signed-off-by: Valeriy Vyrva <[email protected]>

[resolves #249]
  • Loading branch information
valery1707 authored Apr 23, 2024
1 parent 3531c15 commit 4c2805f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/io/r2dbc/h2/H2Connection.java
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public Mono<Void> beginTransaction(TransactionDefinition definition) {

if (readOnly != null) {
logger.warn(TransactionDefinition.READ_ONLY + " + isn't supported in H2 at the transaction level. " +
"You must set it on conenction URL. See http://www.h2database.com/html/features.html#read_only");
"You must set it on the connection URL. See http://www.h2database.com/html/features.html#read_only");
}

return startTransaction;
Expand Down

0 comments on commit 4c2805f

Please sign in to comment.