Add missing ws separator between words
This is to add missing ws separator between words. Change-Id: Iab23ce2ad081fef18978579594886950b8e2cb01
This commit is contained in:
@@ -98,7 +98,7 @@ class DataSourceManager(object):
|
|||||||
raise exception.NoDatasourceAvailable
|
raise exception.NoDatasourceAvailable
|
||||||
|
|
||||||
if not metrics or len(metrics) is 0:
|
if not metrics or len(metrics) is 0:
|
||||||
LOG.critical("Can not retrieve datasource without specifying"
|
LOG.critical("Can not retrieve datasource without specifying "
|
||||||
"list of required metrics.")
|
"list of required metrics.")
|
||||||
raise exception.InvalidParameter(parameter='metrics',
|
raise exception.InvalidParameter(parameter='metrics',
|
||||||
parameter_type='none empty list')
|
parameter_type='none empty list')
|
||||||
@@ -109,7 +109,7 @@ class DataSourceManager(object):
|
|||||||
if (metric not in self.metric_map[datasource] or
|
if (metric not in self.metric_map[datasource] or
|
||||||
self.metric_map[datasource].get(metric) is None):
|
self.metric_map[datasource].get(metric) is None):
|
||||||
no_metric = True
|
no_metric = True
|
||||||
LOG.warning("Datasource: {0} could not be used due to"
|
LOG.warning("Datasource: {0} could not be used due to "
|
||||||
"metric: {1}".format(datasource, metric))
|
"metric: {1}".format(datasource, metric))
|
||||||
break
|
break
|
||||||
if not no_metric:
|
if not no_metric:
|
||||||
|
|||||||
Reference in New Issue
Block a user