Repository: kafka
Updated Branches:
refs/heads/trunk 62c0972ef -> 5cf579a7e
MINOR: Fix vagrant rsync exclude argument
Existing VMs will need to be re-provisioned or re-created to pick up this change.
Reference docs:
https://www.vagrantup.com/docs/synced-folders/rsync.html
Author: Magnus Edenhill <magnus@edenhill.se>
Reviewers: Jason Gustafson <jason@confluent.io>
Closes #2047 from edenhill/fix_vm_rsync_exclude
Project: http://git-wip-us.apache.org/repos/asf/kafka/repo
Commit: http://git-wip-us.apache.org/repos/asf/kafka/commit/5cf579a7
Tree: http://git-wip-us.apache.org/repos/asf/kafka/tree/5cf579a7
Diff: http://git-wip-us.apache.org/repos/asf/kafka/diff/5cf579a7
Branch: refs/heads/trunk
Commit: 5cf579a7e43e0d2e6a2a26ede88ee850127aa4a1
Parents: 62c0972
Author: Magnus Edenhill <magnus@edenhill.se>
Authored: Thu Oct 20 16:18:25 2016 -0700
Committer: Jason Gustafson <jason@confluent.io>
Committed: Thu Oct 20 16:18:25 2016 -0700
----------------------------------------------------------------------
Vagrantfile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------
http://git-wip-us.apache.org/repos/asf/kafka/blob/5cf579a7/Vagrantfile
----------------------------------------------------------------------
diff --git a/Vagrantfile b/Vagrantfile
index 09d780c..2179a3c 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -135,7 +135,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
end
# Exclude some directories that can grow very large from syncing
- override.vm.synced_folder ".", "/vagrant", type: "rsync", :rsync_excludes => ['.git',
'core/data/', 'logs/', 'tests/results/', 'results/']
+ override.vm.synced_folder ".", "/vagrant", type: "rsync", rsync__exclude: ['.git', 'core/data/',
'logs/', 'tests/results/', 'results/']
end
def name_node(node, name, ec2_instance_name_prefix)
|