docker-registry-sync 0.2.3 → 0.2.4
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/s3.rb +2 -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
|
+
NWUwMGMxODNmMTc2ODJhNWMyYzJhMTljNmIyOGJhOTA1NTZkYzkwZA==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
MGU1ZWRjYjU2N2M2YzdjYmZjMjVlMGVhY2E0YTZhNjhmN2M3NjAzOQ==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
ZWMxNzdmNTM2MmQzNTYwZGVmYjE0MGI2ZjU3NzZjNDNmOThkYjg0MjE1ZTc3
|
10
|
+
Mzg4YjRhMTYxM2JlZDc2NjMxMTNmODViZTg4ZGQyZmY0MjA3NDgyNjg4Mzhh
|
11
|
+
YTg0NGYwNTJlYWMzNTE4YWZmNWFkMTU1Y2ZkNjY4MTY4OTRmN2U=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
NDNjZTcyNjZhM2QwNTlkNGNlNzU5NWE2MDFiNGUzY2Q3OTVkZGY3ZDMwODFj
|
14
|
+
OGZjYzYwMmQxZTY4NDAyNjY2M2U1YWY4N2ZkYmE5MTlmYjA0OGIxZGFiNzBh
|
15
|
+
ZmM3ZWE3Y2NlN2I0NWE0Mjg3OWFmODkyODBhNDgwYzc3YWYwZjA=
|
@@ -101,7 +101,7 @@ module Docker
|
|
101
101
|
keys.each do |key|
|
102
102
|
@config.logger.info "Syncing key #{source_bucket}/#{key} to bucket #{target_bucket}"
|
103
103
|
opts = {acl: 'bucket-owner-full-control',
|
104
|
-
region: target_client.
|
104
|
+
region: target_client.config[:region],
|
105
105
|
bucket: target_bucket,
|
106
106
|
key: key,
|
107
107
|
copy_source: "#{source_bucket}/#{key}"}
|
@@ -112,6 +112,7 @@ module Docker
|
|
112
112
|
opts[:copy_source_sse_customer_algorithm] = 'AES256'
|
113
113
|
end
|
114
114
|
@work_queue << opts
|
115
|
+
sleep 0.1
|
115
116
|
end
|
116
117
|
end
|
117
118
|
|