View | Details | Raw Unified | Return to bug 232246
Collapse All | Expand All

(-)py-oslo.messaging/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	oslo.messaging
4
PORTNAME=	oslo.messaging
5
PORTVERSION=	6.0.0
5
PORTVERSION=	6.0.0
6
PORTREVISION=	1
6
CATEGORIES=	devel python
7
CATEGORIES=	devel python
7
MASTER_SITES=	CHEESESHOP
8
MASTER_SITES=	CHEESESHOP
8
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
9
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
(-)py-oslo.messaging/files/patch-oslo__messaging___drivers_impl__rabbit.py (+11 lines)
Line 0 Link Here
1
--- oslo_messaging/_drivers/impl_rabbit.py.orig	2018-03-27 18:46:38 UTC
2
+++ oslo_messaging/_drivers/impl_rabbit.py
3
@@ -920,7 +920,7 @@ class Connection(object):
4
         else:
5
             sock.settimeout(timeout)
6
             # TCP_USER_TIMEOUT is not defined on Windows and Mac OS X
7
-            if sys.platform != 'win32' and sys.platform != 'darwin':
8
+            if sys.platform != 'win32' and sys.platform != 'darwin' and sys.platform[0:7] != 'freebsd':
9
                 try:
10
                     timeout = timeout * 1000 if timeout is not None else 0
11
                     # NOTE(gdavoian): only integers and strings are allowed

Return to bug 232246