Skip to content

Release v2.6.1

Compare
Choose a tag to compare
@haskellworksci haskellworksci released this 02 Oct 06:13

Changes

Documentation from librdkafka:

/**
 * @brief Destroy Kafka handle.
 *
 * @remark This is a blocking operation.
 * @remark rd_kafka_consumer_close() will be called from this function
 *         if the instance type is RD_KAFKA_CONSUMER, a \c group.id was
 *         configured, and the rd_kafka_consumer_close() was not
 *         explicitly called by the application. This in turn may
 *         trigger consumer callbacks, such as rebalance_cb.
 *         Use rd_kafka_destroy_flags() with
 *         RD_KAFKA_DESTROY_F_NO_CONSUMER_CLOSE to avoid this behaviour.
 *
 * @sa rd_kafka_destroy_flags()
 */
RD_EXPORT
void        rd_kafka_destroy(rd_kafka_t *rk);
``` by @alexbiehl
- Merge pull request #105 from alexbiehl/patch-1  Make rd_kafka_destroy a safe foreign call by @AlexeyRaga
- Release v2.6.1 by @AlexeyRaga