Merge "Fixes 'Not enough available memory' log message"

This commit is contained in:
Zuul 2017-12-27 15:14:28 +00:00 committed by Gerrit Code Review
commit f536d3bf23
1 changed files with 4 additions and 2 deletions

View File

@ -919,9 +919,11 @@ def _numa_fit_instance_cell_with_pinning(host_cell, instance_cell,
if host_cell.avail_memory < instance_cell.memory:
LOG.debug('Not enough available memory to schedule instance. '
'Oversubscription is not possible with pinned instances. '
'Required: %(required)s, actual: %(actual)s',
'Required: %(required)s, available: %(available)s, '
'total: %(total)s. ',
{'required': instance_cell.memory,
'actual': host_cell.memory})
'available': host_cell.avail_memory,
'total': host_cell.memory})
return
if host_cell.siblings: