Merge "Add missing ws seperator between words"

This commit is contained in:
Zuul 2019-01-25 06:31:27 +00:00 committed by Gerrit Code Review
commit e88a482576
3 changed files with 5 additions and 5 deletions

View File

@ -438,7 +438,7 @@ class OpenStack_Driver(abstract_vim_driver.VimAbstractDriver,
port_pair['egress'] = egress
port_pair_id = neutronclient_.port_pair_create(port_pair)
if not port_pair_id:
LOG.warning("Chain creation failed due to port pair"
LOG.warning("Chain creation failed due to port pair "
"creation failed for vnf %(vnf)s",
{'vnf': vnf['name']})
return None

View File

@ -590,8 +590,8 @@ def populate_flavor_extra_specs(es_dict, properties, flavor_extra_input):
error_msg_details=(mval + ":Invalid Input"))
es_dict['hw:mem_page_size'] = mval
if 'numa_nodes' in properties and 'numa_node_count' in properties:
LOG.warning('Both numa_nodes and numa_node_count have been'
'specified; numa_node definitions will be ignored and'
LOG.warning('Both numa_nodes and numa_node_count have been '
'specified; numa_node definitions will be ignored and '
'numa_node_count will be applied')
if 'numa_node_count' in properties:
es_dict['hw:numa_nodes'] = \

View File

@ -78,8 +78,8 @@ class Keystone(object):
os.makedirs(path, 0o700)
except OSError:
LOG.error(
'Failed to create [fernet_tokens] key_repository: either'
'it already exists or you don\'t have sufficient'
'Failed to create [fernet_tokens] key_repository: either '
'it already exists or you don\'t have sufficient '
'permissions to create it')
def create_fernet_key(self):