From 3756ee129aac45842023b9c707e771d94a68390d Mon Sep 17 00:00:00 2001 From: Victor Hu Date: Tue, 10 Feb 2015 17:16:10 -0500 Subject: [PATCH] Checking for ppc64 and setting the SO_PEERCRED to 21. The socket.SO_PEERCRED seemed to work fine for my ppc64 RHEL system, but testing today on little- endian SLES 12 system threw that exception. So checking if the arch is "ppc64" on the exception case. --- confluent_server/confluent/sockapi.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/confluent_server/confluent/sockapi.py b/confluent_server/confluent/sockapi.py index ee872100..3d02eab8 100644 --- a/confluent_server/confluent/sockapi.py +++ b/confluent_server/confluent/sockapi.py @@ -45,7 +45,11 @@ auditlog = None try: SO_PEERCRED = socket.SO_PEERCRED except AttributeError: - SO_PEERCRED = 17 + import platform + if "ppc64" in platform.machine(): + SO_PEERCRED = 21 + else: + SO_PEERCRED = 17 class ClientConsole(object):