File size: 259 Bytes
83d24b2 | 1 2 3 4 5 6 7 8 9 | from __future__ import absolute_import
# Set default logging handler to avoid "No handler found" warnings.
import logging
logging.basicConfig(level=logging.INFO)
from kafka.future import Future
Future.error_on_callbacks = True # always fail during testing
|