Skip to content

Commit 78528f6

Browse files
scxwhite苏承祥
andauthored
[MINOR] Simple logging fix in LockManager (#6765)
Co-authored-by: 苏承祥 <[email protected]>
1 parent 60b62fc commit 78528f6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • hudi-client/hudi-client-common/src/main/java/org/apache/hudi/client/transaction/lock

hudi-client/hudi-client-common/src/main/java/org/apache/hudi/client/transaction/lock/LockManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ public void lock() {
7272
Thread.sleep(maxWaitTimeInMs);
7373
} catch (HoodieLockException | InterruptedException e) {
7474
if (retryCount >= maxRetries) {
75-
throw new HoodieLockException("Unable to acquire lock, lock object ", e);
75+
throw new HoodieLockException("Unable to acquire lock, lock object " + lockProvider.getLock(), e);
7676
}
7777
try {
7878
Thread.sleep(maxWaitTimeInMs);

0 commit comments

Comments
 (0)