summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--net/exabgp4/Makefile2
-rw-r--r--net/exabgp4/files/patch-lib_exabgp_reactor_network_outgoing.py11
2 files changed, 12 insertions, 1 deletions
diff --git a/net/exabgp4/Makefile b/net/exabgp4/Makefile
index f7cbe6df635d..36062d447510 100644
--- a/net/exabgp4/Makefile
+++ b/net/exabgp4/Makefile
@@ -2,7 +2,7 @@
PORTNAME= exabgp
PORTVERSION= 4.2.13
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= net
MASTER_SITES= GH \
ZI
diff --git a/net/exabgp4/files/patch-lib_exabgp_reactor_network_outgoing.py b/net/exabgp4/files/patch-lib_exabgp_reactor_network_outgoing.py
new file mode 100644
index 000000000000..2bc959c98d78
--- /dev/null
+++ b/net/exabgp4/files/patch-lib_exabgp_reactor_network_outgoing.py
@@ -0,0 +1,11 @@
+--- lib/exabgp/reactor/network/outgoing.py.orig 2021-03-19 09:29:00 UTC
++++ lib/exabgp/reactor/network/outgoing.py
+@@ -53,6 +53,8 @@ class Outgoing(Connection):
+ connect(self.io, self.peer, self.port, self.afi, self.md5)
+ return None
+ except Exception as exc:
++ self.io.close()
++ self.io = None
+ return exc
+
+ def establish(self):