Merge "Use the hostname from the Transport for GSSAPI Authentication"

This commit is contained in:
Jenkins 2015-10-09 14:08:22 +00:00 committed by Gerrit Code Review
commit aee3b94d23
2 changed files with 2 additions and 1 deletions

View File

@ -460,7 +460,7 @@ class Controller(pyngus.ConnectionEventHandler):
def _do_connect(self):
"""Establish connection and reply subscription on processor thread."""
host = self.hosts.current
conn_props = {}
conn_props = {'hostname': host.hostname}
if self.idle_timeout:
conn_props["idle-time-out"] = float(self.idle_timeout)
if self.trace_protocol:

View File

@ -5,6 +5,7 @@ envlist = py34,py27,pep8
setenv =
VIRTUAL_ENV={envdir}
OS_TEST_TIMEOUT=30
PN_TRACE_FRM=1
deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
commands = python setup.py testr --slowest --testr-args='{posargs}'