Skip to content

Commit

Permalink
Merge pull request #6544 from myresd/bugfix/FISH-6472
Browse files Browse the repository at this point in the history
FISH-6472
  • Loading branch information
kalinchan authored Jul 4, 2024
2 parents 1c7aec4 + 8200147 commit 9deb480
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -539,7 +539,7 @@ public static String getTransactionIsolationInt(int tranIsolation) {

switch (tranIsolation) {
case Connection.TRANSACTION_READ_UNCOMMITTED:
return "read-uncommited";
return "read-uncommitted";
case Connection.TRANSACTION_READ_COMMITTED:
return "read-committed";
case Connection.TRANSACTION_REPEATABLE_READ:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ private synchronized void actualUndeployResource(PoolInfo poolInfo) throws Excep
propList.add(new ConnectorConfigProperty("TransactionIsolation",
adminPool.getTransactionIsolationLevel() == null ? ""
: adminPool.getTransactionIsolationLevel(),
"Transaction Isolatin Level",
"Transaction Isolation Level",
"java.lang.String"));

propList.add(new ConnectorConfigProperty("GuaranteeIsolationLevel",
Expand Down

0 comments on commit 9deb480

Please sign in to comment.