diff options
author | Jenkins <jenkins@review.openstack.org> | 2013-02-13 08:27:04 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2013-02-13 08:27:04 +0000 |
commit | d980805880c681881504e269e03130e4452630ab (patch) | |
tree | 537c3b41d9c5e34d97fdc134c983f9e74bd899b4 /nova/exception.py | |
parent | 8462882137f254d77e372306e91aaa05c50ce423 (diff) | |
parent | be62d6a86971abac57a1cc03c985ba1e97fd55cb (diff) | |
download | nova-d980805880c681881504e269e03130e4452630ab.tar.gz nova-d980805880c681881504e269e03130e4452630ab.tar.xz nova-d980805880c681881504e269e03130e4452630ab.zip |
Merge "Handle compute node not available for live migration"
Diffstat (limited to 'nova/exception.py')
-rw-r--r-- | nova/exception.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/exception.py b/nova/exception.py index 0ff485f9b..9063d1068 100644 --- a/nova/exception.py +++ b/nova/exception.py @@ -344,7 +344,7 @@ class ComputeResourcesUnavailable(ServiceUnavailable): class ComputeServiceUnavailable(ServiceUnavailable): - message = _("Compute service is unavailable at this time.") + message = _("Compute service of %(host)s is unavailable at this time.") class UnableToMigrateToSelf(Invalid): |