This is an automated email from the ASF dual-hosted git repository.
maciej pushed a change to branch fix_rust_sdk_reconnection
in repository https://gitbox.apache.org/repos/asf/iggy.git
from 512522dab Merge branch 'master' into fix_rust_sdk_reconnection
add 7a7b0eda4 chore(message_bus): enable pedantic and nursery clippy lints
(#2873)
add 69188127e chore(simulator): enable pedantic and nursery clippy lints
(#2895)
add ad46a979c chore(shard,metadata): enable pedantic and nursery clippy
lints (#2896)
add 0cff6d276 feat(python): add TLS and auth args to getting-started
examples (#2754)
add 9b06e603c Merge branch 'master' into fix_rust_sdk_reconnection
No new revisions were added by this update.
Summary of changes:
.../actions/python-maturin/pre-merge/action.yml | 6 +-
core/bench/Cargo.toml | 2 +-
core/message_bus/Cargo.toml | 5 +
core/message_bus/src/cache/connection.rs | 20 +--
core/message_bus/src/cache/mod.rs | 2 +-
core/message_bus/src/lib.rs | 7 +-
core/metadata/Cargo.toml | 5 +
core/metadata/src/impls/metadata.rs | 20 ++-
core/metadata/src/permissioner/mod.rs | 13 +-
.../permissioner_rules/consumer_groups.rs | 1 +
.../permissioner_rules/consumer_offsets.rs | 1 +
.../permissioner/permissioner_rules/messages.rs | 5 +-
.../permissioner/permissioner_rules/partitions.rs | 1 +
.../permissioner/permissioner_rules/segments.rs | 1 +
.../src/permissioner/permissioner_rules/streams.rs | 1 +
.../src/permissioner/permissioner_rules/system.rs | 1 +
.../src/permissioner/permissioner_rules/topics.rs | 7 +-
.../src/permissioner/permissioner_rules/users.rs | 1 +
core/metadata/src/stats/mod.rs | 4 +-
core/metadata/src/stm/consumer_group.rs | 17 +-
core/metadata/src/stm/mod.rs | 18 +-
core/metadata/src/stm/mux.rs | 12 +-
core/metadata/src/stm/snapshot.rs | 33 ++--
core/metadata/src/stm/stream.rs | 5 +-
core/metadata/src/stm/user.rs | 7 +-
core/partitions/Cargo.toml | 2 +-
core/shard/Cargo.toml | 5 +
core/shard/src/lib.rs | 18 +-
core/shard/src/router.rs | 4 +-
core/shard/src/shards_table.rs | 7 +-
core/simulator/Cargo.toml | 5 +
core/simulator/src/bus.rs | 55 +++---
core/simulator/src/client.rs | 30 ++--
core/simulator/src/deps.rs | 5 +-
core/simulator/src/lib.rs | 14 +-
core/simulator/src/main.rs | 13 +-
core/simulator/src/network.rs | 12 +-
core/simulator/src/packet.rs | 40 +++--
core/simulator/src/ready_queue.rs | 14 +-
core/simulator/src/replica.rs | 18 +-
examples/python/getting-started/consumer.py | 62 ++++++-
examples/python/getting-started/producer.py | 62 ++++++-
foreign/python/tests/conftest.py | 2 +-
foreign/python/tests/test_tls.py | 188 +++++++++++++++++++++
scripts/run-python-examples-from-readme.sh | 72 +++++++-
45 files changed, 653 insertions(+), 170 deletions(-)
mode change 100644 => 100755 examples/python/getting-started/consumer.py
mode change 100644 => 100755 examples/python/getting-started/producer.py
create mode 100644 foreign/python/tests/test_tls.py