MQTT setup error in 43.2

Got a couple of MQTT sensors that were working fine on 43.1, just upgraded to 43.2 now getting:

17-05-01 19:18:17 INFO (MainThread) [homeassistant.setup] Setting up mqtt
17-05-01 19:18:17 INFO (Thread-9) [homeassistant.util.package] Attempting install of aiohttp_cors==0.5.2
17-05-01 19:18:20 ERROR (MainThread) [homeassistant.setup] Error during setup of component mqtt
Traceback (most recent call last):
  File "/srv/homeassistant/lib/python3.4/site-packages/homeassistant/setup.py", line 189, in _async_setup_component
    result = yield from component.async_setup(hass, processed_config)
  File "/srv/homeassistant/lib/python3.4/site-packages/homeassistant/components/mqtt/__init__.py", line 380, in async_setup
    success = yield from hass.data[DATA_MQTT].async_connect()
  File "/srv/homeassistant/lib/python3.4/site-packages/homeassistant/components/mqtt/__init__.py", line 490, in async_connect
    None, self._mqttc.connect, self.broker, self.port, self.keepalive)
  File "/usr/lib/python3.4/asyncio/futures.py", line 388, in __iter__
    yield self  # This tells Task to wait for completion.
  File "/usr/lib/python3.4/asyncio/tasks.py", line 286, in _wakeup
    value = future.result()
  File "/usr/lib/python3.4/asyncio/futures.py", line 277, in result
    raise self._exception
  File "/usr/lib/python3.4/concurrent/futures/thread.py", line 54, in run
    result = self.fn(*self.args, **self.kwargs)
  File "/home/homeassistant/.homeassistant/deps/paho/mqtt/client.py", line 700, in connect
    return self.reconnect()
  File "/home/homeassistant/.homeassistant/deps/paho/mqtt/client.py", line 822, in reconnect
    sock = socket.create_connection((self._host, self._port), source_address=(self._bind_address, 0))
  File "/usr/lib/python3.4/socket.py", line 509, in create_connection
    raise err
  File "/usr/lib/python3.4/socket.py", line 500, in create_connection
    sock.connect(sa)
OSError: [Errno 113] No route to host

This indicates a problem connecting at the os level rather than a problem with HA. Is your broker on a different machine? Can you ping that machine from the HA machine?

Thanks for the tip: I am running it on localhost but referring to it in my config via its ip. Had been pointing to the wifi ip which had changed, whilst I have a DHCP reservation on the ethernet ip… So solution is to point to my ethernet ip… Thanks!