diff options
| author | Nikolay Sokolov <nsokolov@griddynamics.com> | 2011-07-26 02:33:39 +0400 |
|---|---|---|
| committer | Nikolay Sokolov <nsokolov@griddynamics.com> | 2011-07-26 02:33:39 +0400 |
| commit | 8f5a6d15e671c95c6e38147ca15fb49fd672e788 (patch) | |
| tree | bc24c72a88908d52515fcbb8434d93e06f97f971 | |
| parent | d4842ac958bda3b446d14c7348692acc231e0041 (diff) | |
Warn user instead of ignoring
| -rw-r--r-- | nova/compute/manager.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/compute/manager.py b/nova/compute/manager.py index 53390098a..1f207e6f0 100644 --- a/nova/compute/manager.py +++ b/nova/compute/manager.py @@ -170,7 +170,7 @@ class ComputeManager(manager.SchedulerDependentManager): try: # Hyper-V and VMWareAPI drivers will raise and exception self.driver.ensure_filtering_rules_for_instance(instance) except NotImplementedError: - pass + LOG.warning(_('Hypervisor driver does not support firewall rules')) def _update_state(self, context, instance_id, state=None): """Update the state of an instance from the driver info.""" |
