You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@heron.apache.org by ni...@apache.org on 2022/01/03 20:18:42 UTC

[incubator-heron] 02/02: Updated the subnet to match the Vagrant allowed range

This is an automated email from the ASF dual-hosted git repository.

nicknezis pushed a commit to branch nicknezis/vagrant-docker-update
in repository https://gitbox.apache.org/repos/asf/incubator-heron.git

commit 8cba8c0c68041e72dbebef9b0b749202ef2369d2
Author: Nicholas Nezis <ni...@gmail.com>
AuthorDate: Mon Jan 3 15:18:32 2022 -0500

    Updated the subnet to match the Vagrant allowed range
---
 vagrant/Vagrantfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/vagrant/Vagrantfile b/vagrant/Vagrantfile
index a6ead48..f96cac9 100644
--- a/vagrant/Vagrantfile
+++ b/vagrant/Vagrantfile
@@ -16,7 +16,7 @@
 # vi: set ft=ruby :
 
 SECONDARIES=0
-NET_PREFIX="192.168.25."
+NET_PREFIX="192.168.56."
 
 NODES={"primary" => NET_PREFIX + "5"}
 (0..SECONDARIES-1).each do |i| NODES["secondary#{i}"] = NET_PREFIX + (6 + i).to_s end