This is an automated email from the ASF dual-hosted git repository.
mmodzelewski pushed a change to branch java-vsr
in repository https://gitbox.apache.org/repos/asf/iggy.git
from f1681c76c update c# tests to new error code
add 1ac819e99 feat(python): expose TCP client configuration (#3776)
add b51e3bbb6 Merge branch 'master' into java-vsr
No new revisions were added by this update.
Summary of changes:
core/sdk/src/prelude.rs | 24 +-
examples/python/getting-started/consumer.py | 52 ++--
examples/python/getting-started/producer.py | 50 +--
foreign/python/Cargo.toml | 1 +
foreign/python/README.md | 36 +++
foreign/python/apache_iggy.pyi | 263 ++++++++++++----
foreign/python/src/client.rs | 135 ++++----
foreign/python/src/config.rs | 423 +++++++++++++++++++++++++
foreign/python/src/consumer.rs | 51 +---
foreign/python/src/duration.rs | 65 ++++
foreign/python/src/lib.rs | 8 +-
foreign/python/src/receive_message.rs | 2 +-
foreign/python/src/send_message.rs | 2 -
foreign/python/src/topic.rs | 33 +-
foreign/python/tests/conftest.py | 5 +
foreign/python/tests/test_client_config.py | 459 ++++++++++++++++++++++++++++
16 files changed, 1386 insertions(+), 223 deletions(-)
create mode 100644 foreign/python/src/config.rs
create mode 100644 foreign/python/src/duration.rs
create mode 100644 foreign/python/tests/test_client_config.py