From d5ff9b4cb5a412f2680970ccb2145f6bbca2693e Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Thu, 9 Jul 2020 10:44:05 -0400 Subject: [PATCH] Add missing traceback import to pxe This concludes fixing the susceptability to total loss of pxe thread. --- confluent_server/confluent/discovery/protocols/pxe.py | 1 + 1 file changed, 1 insertion(+) diff --git a/confluent_server/confluent/discovery/protocols/pxe.py b/confluent_server/confluent/discovery/protocols/pxe.py index ab5942c0..0e8d0a2f 100644 --- a/confluent_server/confluent/discovery/protocols/pxe.py +++ b/confluent_server/confluent/discovery/protocols/pxe.py @@ -32,6 +32,7 @@ import eventlet.green.socket as socket import eventlet.green.select as select import netifaces import struct +import traceback libc = ctypes.CDLL(ctypes.util.find_library('c'))