From 47e67c3a40143b298f3747caef8f27f60df4a2fc Mon Sep 17 00:00:00 2001 From: Gabriel Detraz Date: Mon, 14 Oct 2019 23:47:34 +0200 Subject: [PATCH] Retourne au moins l'interface principale du switch --- topologie/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/topologie/models.py b/topologie/models.py index 0ed4b9dd..093907df 100644 --- a/topologie/models.py +++ b/topologie/models.py @@ -307,7 +307,7 @@ class Switch(AclMixin, Machine): It must the the management interface for that device""" switch_iptype = OptionalTopologie.get_cached_value('switchs_ip_type') if switch_iptype: - return self.interface_set.filter(machine_type__ip_type=switch_iptype).first() + return self.interface_set.filter(machine_type__ip_type=switch_iptype).first() or self.interface_set.first() return self.interface_set.first() @cached_property