stoplight 5.8.0 → 5.8.2
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: ffd14a6cba96433a1bf1129ed7218923ae6abcf2b038adacfb811ca42aa1f358
|
|
4
|
+
data.tar.gz: '0867e7091e8e74d7466e54a849d0a7c2b188489df408555370acba9fa1ddb4f0'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1a29c7ed961ab026f67b2b84edc8fbf96f134fdaa7c080b43494bda31d85248b3843c326bede1376cedfa8c1d047e88f297f6684d0e6a928129ab914b2139c25
|
|
7
|
+
data.tar.gz: 077bea6b93b238d67431efd13f351c70ddad211ec4802d01eeab1672445829a0022f83b35a86928d20934a735834a2a8c5eaab364109cf81a9c88a4ec43d001d
|
|
@@ -75,7 +75,7 @@ module Stoplight
|
|
|
75
75
|
end
|
|
76
76
|
|
|
77
77
|
KEY_SEPARATOR = ":"
|
|
78
|
-
KEY_PREFIX = %w[stoplight
|
|
78
|
+
KEY_PREFIX = %w[stoplight v5].join(KEY_SEPARATOR)
|
|
79
79
|
|
|
80
80
|
# @!attribute recovery_lock_store
|
|
81
81
|
# @return [Stoplight::Infrastructure::Redis::DataStore::RecoveryLockStore]
|
|
@@ -43,7 +43,7 @@ module Stoplight
|
|
|
43
43
|
#
|
|
44
44
|
# @param pieces Key segments to append
|
|
45
45
|
# @return Full Redis key
|
|
46
|
-
def key(*pieces) = [:stoplight, :
|
|
46
|
+
def key(*pieces) = [:stoplight, :v5, system_id, "{#{light_id}}", *pieces].join(":")
|
|
47
47
|
end
|
|
48
48
|
end
|
|
49
49
|
end
|
data/lib/stoplight/version.rb
CHANGED