Hello everyone, I've updated my kafka-python from 1.3.5 to 1.4.0 and could notice that a producer initialization in 1.4.0 is slower than in 1.3.5. Using 1.3.5 ``` In [1]: from kafka.producer.kafka import KafkaProducer ...: import time ...: ...: start = time.time() ...: p = KafkaProducer(bootstrap_servers='kafka:9092') ...: end = time.time() ...: print(end - start) ...: 0.12534785270690918 ``` Using 1.4.0 ``` In [1]: from kafka.producer.kafka import KafkaProducer ...: import time ...: ...: start = time.time() ...: p = KafkaProducer(bootstrap_servers='kafka:9092') ...: end = time.time() ...: print(end - start) ...: 1.1414685249328613 ``` Also I've performed some tests using python profile and the result shows that `poll` method is taking more time to run. Using 1.3.5  Using 1.4.0  Does anyone know the reason of this overhead? Thanks.