devstack/vagrant: Add 127.0.0.1 to no_proxy list

Fixes issue when installing influxdb schema which uses URL
  http://127.0.0.1:8086/query

Change-Id: Id536d923d30f0e4205910d4d474236d32604a173
This commit is contained in:
Darren Hague 2017-03-16 13:24:43 +00:00
parent f262337d05
commit 30d91748ff
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ Vagrant.configure(2) do |config|
config.proxy.https = ENV["https_proxy"]
end
if ENV["no_proxy"]
config.proxy.no_proxy = ENV["no_proxy"] + ',192.168.10.6,10.0.2.15'
config.proxy.no_proxy = ENV["no_proxy"] + ',192.168.10.6,10.0.2.15,127.0.0.1'
end
end