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 1baa7e1 commit cfbd8e8Copy full SHA for cfbd8e8
src/main/java/org/springframework/data/redis/cache/DefaultRedisCacheWriter.java
@@ -216,15 +216,16 @@ public CacheLockingConfiguration sleepTime(Duration sleepTime) {
216
"Lock sleep time must not be null zero or negative");
217
218
this.lockSleepTime = sleepTime;
219
+
220
return this;
221
}
222
223
@Override
224
public CacheLockingConfiguration lockTimeout(TtlFunction ttlFunction) {
225
226
Assert.notNull(ttlFunction, "TTL function must not be null");
-
227
this.lockTtlFunction = ttlFunction;
228
229
230
231
0 commit comments