concourse-technician 0.4.2 → 0.4.3
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/concourse-technician/volume_reaper.rb +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b57ce17c91dbdea5565d73cc8bf7e618b5a9c18e
|
|
4
|
+
data.tar.gz: 9edb339af8c3d35528301ccf8b039e7a3fb78a8f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '09cae20047bf76e7c6edecdca2c7d73952458441002ca2ff21b9948e456ca4dcbfd37b996cf75bec0ce7292800df23cc70256fe914af0027db9f3a08c076c37f'
|
|
7
|
+
data.tar.gz: 4af41037723079b50620b435faee03bc10c4c883707e2ebd2f5a721a01085bb90c31064b42d4ffbd17f20a28474ac00f3b4be6ba0a3439f135552e0548ebdd53
|
|
@@ -124,10 +124,10 @@ module ConcourseTechnician
|
|
|
124
124
|
|
|
125
125
|
Contract None => Any
|
|
126
126
|
def repair!
|
|
127
|
-
worker.stop if worker.active?
|
|
127
|
+
worker.stop if worker.active? && !env?(:NOOP)
|
|
128
128
|
reap_subvolumes
|
|
129
129
|
reap_dead_volumes
|
|
130
|
-
worker.start
|
|
130
|
+
worker.start unless env?(:NOOP)
|
|
131
131
|
end
|
|
132
132
|
end
|
|
133
133
|
end
|