From b8f8ae4a582dc7f25f2cd37801af42f65821c73e Mon Sep 17 00:00:00 2001 From: Sander Steffann Date: Wed, 23 Oct 2019 13:28:10 +0200 Subject: [PATCH] Break infinite loop by removing redundant update --- netbox/circuits/signals.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/netbox/circuits/signals.py b/netbox/circuits/signals.py index c19e23577..7471a4136 100644 --- a/netbox/circuits/signals.py +++ b/netbox/circuits/signals.py @@ -16,7 +16,3 @@ def update_circuit(instance, **kwargs): for circuit in circuits: circuit.last_updated = time circuit.save() - - # Update all endpoints affected by this cable - endpoints = instance.circuit.get_related_endpoints() - update_endpoints(endpoints)