docker-registry-sync 0.2.2 → 0.2.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 +8 -8
- data/lib/docker/registry/sync/cmd.rb +1 -0
- data/lib/docker/registry/sync/s3.rb +1 -1
- data/lib/docker/registry/sync/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
ODRjZjU0YjQ2NmQxZGQ1MTFjYzE3ZTI3YzhiYzBkM2JlYzg1OGM0NQ==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
YmY3YWFmNzNjZGI0ZjBiMWUzZjM1MDJkNDkwNjIyYzljMjU1NWE4Ng==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
YzIyYzBlY2IxYzJmM2NhN2IzMmI3ZTRmMDdkMGJlNWNmNDNlNjY1Y2QxYjQx
|
10
|
+
ODk3Mzc4NTI2NmM3YzgzY2EwYTViMmJmZWY5NTAwNzJlZTJmN2Y2NWQ1MzNi
|
11
|
+
YTljNmY2YTVjZjI0MWQ3OGEzY2MzZmM5OWM2OTVkZGEyNGNiNDQ=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
ZWQwMWY1NWYzMzI2NzczNTlhNGZmNjAyZTAzODI3ZWE0YWFmNzY4ZGNkMTYx
|
14
|
+
MzJiM2FiNjE1ODI0YWMxOTgxMTRiYzYxYTM5OTdlODI2NzM0NmI0MDcwODMz
|
15
|
+
Mjg0ZDYyZmYxODgwNWFhYjk4M2I2ODNiOTNkMmVlNDgwMjcwYzg=
|
@@ -172,6 +172,7 @@ module Docker
|
|
172
172
|
sleep @config.empty_queue_sleep_time unless @terminated
|
173
173
|
rescue Exception => e
|
174
174
|
@config.logger.error "An unknown error occurred while monitoring queue: #{e}"
|
175
|
+
@config.logger.error e.traceback
|
175
176
|
@config.logger.error 'Exiting...'
|
176
177
|
@terminated = true
|
177
178
|
ec = 1
|
@@ -112,7 +112,6 @@ module Docker
|
|
112
112
|
opts[:copy_source_sse_customer_algorithm] = 'AES256'
|
113
113
|
end
|
114
114
|
@work_queue << opts
|
115
|
-
sleep 0.1
|
116
115
|
end
|
117
116
|
end
|
118
117
|
|
@@ -123,6 +122,7 @@ module Docker
|
|
123
122
|
t_index = nil
|
124
123
|
|
125
124
|
begin
|
125
|
+
sleep 0.1
|
126
126
|
busy = @threads.select { |t| t.nil? || t.status == false || t['finished'].nil? == false }.length == 0
|
127
127
|
end until !busy
|
128
128
|
t_index = @threads.rindex { |t| t.nil? || t.status == false || t['finished'].nil? == false }
|