vagrant-rsync-only-changed 0.8.0 → 0.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
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 84335fb9a319e405195abf2856b75f0f1d825da1
|
4
|
+
data.tar.gz: 2edf9d16d90568943ac0a4d10504d04841eb48be
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bd06495a655aa03c2337e04bb4c63edd5a1a8b667c7535c55f6512a0b58d49a11c4a17fbb3bc737183e8db4a121db41b33064e6caa682d5751c640b07044e4ec
|
7
|
+
data.tar.gz: 39cf93794b53c6abfbe4f7d93941c0932d8e0ffcdb86a54140603fab6f3bc5048ef2d158416d7075bb1e9216695ece9ef79c033f60657f9de5669bb484913110
|
@@ -187,7 +187,10 @@ module VagrantPlugins
|
|
187
187
|
|
188
188
|
ssh_info = opts[:machine].ssh_info
|
189
189
|
begin
|
190
|
+
start = Time.now
|
190
191
|
VagrantPlugins::RsyncOnlyChanged::RsyncHelper.rsync_single(opts[:machine], ssh_info, opts[:opts], changed_paths)
|
192
|
+
finish = Time.now
|
193
|
+
@logger.info("Time spent in rsync: #{finish-start} (in seconds)")
|
191
194
|
rescue Vagrant::Errors::MachineGuestNotReady
|
192
195
|
# Error communicating to the machine, probably a reload or
|
193
196
|
# halt is happening. Just notify the user but don't fail out.
|