Skip to content

Commit

Permalink
add missing location when disambiguating controller IP
Browse files Browse the repository at this point in the history
prevented ip=* from resolving correctly engine-side

This bug was introduced in the connection cleanup after 0.13,
so does not need backporting.
  • Loading branch information
minrk authored and Carreau committed Sep 5, 2012
1 parent 1932af2 commit 90de600
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion IPython/parallel/apps/ipengineapp.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ def load_connector_file(self):
location = config.EngineFactory.location

proto, ip = d['interface'].split('://')
ip = disambiguate_ip_address(ip)
ip = disambiguate_ip_address(ip, location)
d['interface'] = '%s://%s' % (proto, ip)

# DO NOT allow override of basic URLs, serialization, or exec_key
Expand Down

0 comments on commit 90de600

Please sign in to comment.