kennel 2.16.2 → 2.17.0
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 +4 -4
- data/lib/kennel/models/synthetic_test.rb +3 -0
- data/lib/kennel/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0b10275d6b15d9bf4d1355b3584f5f90cfe28ca4101ca4af5bd8c1ca5d1a9d59
|
|
4
|
+
data.tar.gz: b9125231abbe0093fd6fd3aa3a87020617876ca44dfb362d9fcb75330012d915
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 299cd89f0f8e03a018dddec6e29090a3a1559e24df39217ca555b0634a2e45a4a357dca297f19199c80040db59d6db558da789b7b4f063235210ea902224c432
|
|
7
|
+
data.tar.gz: 9290b593a9cf074cc51621cd47acdaf80487e7e00a88422a3e9096399fc98fa58e39738ea0fc7a96f28a74056e564e7dad31fd91c3317dda48eb056b0cf90be2
|
|
@@ -54,6 +54,9 @@ module Kennel
|
|
|
54
54
|
actual[:locations] = actual[:locations]&.sort
|
|
55
55
|
|
|
56
56
|
ignore_default(expected, actual, DEFAULTS)
|
|
57
|
+
|
|
58
|
+
# only update downtime_ids if we are trying to manage them
|
|
59
|
+
actual[:options]&.delete :downtime_ids unless expected.dig(:options, :downtime_ids)
|
|
57
60
|
end
|
|
58
61
|
end
|
|
59
62
|
end
|
data/lib/kennel/version.rb
CHANGED