Commit 6694020e by Őry Máté

firewall: handle get_dhcp_clients' remote exceptions

parent 23d85db4
...@@ -965,7 +965,13 @@ class Firewall(models.Model): ...@@ -965,7 +965,13 @@ class Firewall(models.Model):
return get_dhcp_clients.apply_async( return get_dhcp_clients.apply_async(
queue=self.get_remote_queue_name(), expires=60).get(timeout=2) queue=self.get_remote_queue_name(), expires=60).get(timeout=2)
except TimeoutError: except TimeoutError:
return None logger.info("get_dhcp_clients task timed out")
except IOError:
logger.exception("get_dhcp_clients failed. "
"maybe syslog isn't readble by firewall worker")
except:
logger.exception("get_dhcp_clients failed")
return None
class Domain(models.Model): class Domain(models.Model):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment