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 |