apache / pulsar-client-python

Apache Pulsar Python client library
https://pulsar.apache.org/
Apache License 2.0
51 stars 39 forks source link

Added missing publish option `ordering_key` #152

Closed sbreatnach closed 11 months ago

sbreatnach commented 11 months ago

Motivation

The ordering_key was not available to set when publishing messages. This is a pre-requisite for using a Key_Shared subscription, which we plan to use in our Python codebase.

Modifications

The missing option has been added, closely matching how partition_key is set. Also added a test to cover new functionality.