We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54f258a commit f821a42Copy full SHA for f821a42
spring-integration-redis/src/main/java/org/springframework/integration/redis/util/RedisLockRegistry.java
@@ -712,7 +712,7 @@ private boolean removeLockKeyWithScript(RedisScript<Boolean> redisScript) {
712
String unLockChannelKeyToUse = RedisLockRegistry.this.unLockChannelKey + ":" + this.lockKey;
713
return Boolean.TRUE.equals(RedisLockRegistry.this.redisTemplate.execute(
714
redisScript, List.of(this.lockKey),
715
- RedisLockRegistry.this.clientId, unLockChannelKey));
+ RedisLockRegistry.this.clientId, unLockChannelKeyToUse));
716
}
717
718
private boolean subscribeLock(long time) throws ExecutionException, InterruptedException {
0 commit comments