Skip to content

Commit 0d9671b

Browse files
committed
space
1 parent b16cc03 commit 0d9671b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/service-library/src/servicelib/redis/_decorators.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ async def _wrapper(*args: P.args, **kwargs: P.kwargs) -> R:
163163
locking_time = lock_release_time - lock_acquisition_time
164164
if locking_time > DEFAULT_EXPECTED_LOCK_OVERALL_TIME:
165165
_logger.warning(
166-
"Lock `%s'for %s was held for %s which is longer than the expected (%s). "
166+
"Lock `%s' for %s was held for %s which is longer than the expected (%s). "
167167
"TIP: consider reducing the locking time by optimizing the code inside "
168168
"the critical section or increasing the default locking time",
169169
redis_lock_key,

0 commit comments

Comments
 (0)