diff --git a/RNS/Interfaces/AutoInterface.py b/RNS/Interfaces/AutoInterface.py index 16f1c79..04dbe6e 100644 --- a/RNS/Interfaces/AutoInterface.py +++ b/RNS/Interfaces/AutoInterface.py @@ -615,7 +615,9 @@ class AutoInterfacePeer(Interface): if self in RNS.Transport.interfaces: RNS.Transport.interfaces.remove(self) # Ingress-limit announces per discovered peer - def should_ingress_limit(self): return True + # TODO: Disabled until potential discovery issue + # has been diagnosed + def should_ingress_limit(self): return False class AutoInterfaceHandler(socketserver.BaseRequestHandler): def __init__(self, callback, *args, **keys):