redis_queued_locks 0.0.25 → 0.0.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f699e402d9f382a72d2964ffe5d35b4d73b37a7c22f9f412fe08f9c7edd30cd7
|
4
|
+
data.tar.gz: aee1e0b45b2819ff2583ade2f51218a408dd7d734a415ec5c30f74de37d31511
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3f5b756ebd9fe435e4f99602c9dc23d16142a73a1f06d3a6bf30edf61326224064ab66cf47f44d56af80a2cf3cdc2249f06064d93164922c8c236ba005ae4b49
|
7
|
+
data.tar.gz: e72b3d3edcbbe538597157ce4d23c9ff149ad4547d30f82b063323d80e20eac87a0c8cc2cdc24fb81414d115932e0f274253c0d22dd0e5a5d7b62b22f0276948
|
data/CHANGELOG.md
CHANGED
@@ -40,7 +40,11 @@ module RedisQueuedLocks::Acquier::AcquireLock::TryToLock
|
|
40
40
|
|
41
41
|
if log_lock_try
|
42
42
|
run_non_critical do
|
43
|
-
logger.debug(
|
43
|
+
logger.debug(
|
44
|
+
"[redis_queued_locks.try_lock_start] " \
|
45
|
+
"lock_key => '#{lock_key}' " \
|
46
|
+
"acq_id => '#{acquier_id}'"
|
47
|
+
)
|
44
48
|
end
|
45
49
|
end
|
46
50
|
|
@@ -48,7 +52,11 @@ module RedisQueuedLocks::Acquier::AcquireLock::TryToLock
|
|
48
52
|
result = redis.with do |rconn|
|
49
53
|
if log_lock_try
|
50
54
|
run_non_critical do
|
51
|
-
logger.debug(
|
55
|
+
logger.debug(
|
56
|
+
"[redis_queued_locks.try_lock_rconn_fetched] " \
|
57
|
+
"lock_key => '#{lock_key}' " \
|
58
|
+
"acq_id => '#{acquier_id}'"
|
59
|
+
)
|
52
60
|
end
|
53
61
|
end
|
54
62
|
|
@@ -139,7 +139,8 @@ module RedisQueuedLocks::Acquier::AcquireLock
|
|
139
139
|
run_non_critical do
|
140
140
|
logger.debug(
|
141
141
|
"[redis_queued_locks.start_lock_obtaining] " \
|
142
|
-
"lock_key => '#{lock_key}'"
|
142
|
+
"lock_key => '#{lock_key}' " \
|
143
|
+
"acq_id => '#{acquier_id}'"
|
143
144
|
)
|
144
145
|
end
|
145
146
|
|
@@ -175,6 +176,7 @@ module RedisQueuedLocks::Acquier::AcquireLock
|
|
175
176
|
logger.debug(
|
176
177
|
"[redis_queued_locks.lock_obtained] " \
|
177
178
|
"lock_key => '#{result[:lock_key]}' " \
|
179
|
+
"acq_id: => '#{acquier_id}' " \
|
178
180
|
"acq_time => #{acq_time} (ms)"
|
179
181
|
)
|
180
182
|
end
|