Merge "BSN: Set hash header to empty instead of False" into stable/icehouse

This commit is contained in:
Jenkins 2014-06-14 06:12:23 +00:00 committed by Gerrit Code Review
commit 980ca4b53f
1 changed files with 1 additions and 1 deletions

View File

@ -131,7 +131,7 @@ class ServerProxy(object):
headers['NeutronProxy-Agent'] = self.name
headers['Instance-ID'] = self.neutron_id
headers['Orchestration-Service-ID'] = ORCHESTRATION_SERVICE_ID
headers[HASH_MATCH_HEADER] = self.mypool.consistency_hash
headers[HASH_MATCH_HEADER] = self.mypool.consistency_hash or ''
if 'keep-alive' in self.capabilities:
headers['Connection'] = 'keep-alive'
else: