release/v2.3 -> master (#837)

This commit is contained in:
cybermaggedon 2026-04-21 16:30:02 +01:00 committed by GitHub
parent 222537c26b
commit a24df8e990
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
431 changed files with 244 additions and 49 deletions

View file

@ -57,9 +57,9 @@ class TestKafkaParseTopic:
backend._parse_topic('unknown:tg:topic')
def test_topic_with_flow_suffix(self, backend):
"""Topic names with flow suffix (e.g. :default) are preserved."""
"""Topic names with flow suffix (e.g. :default) have colons replaced with dots."""
name, cls, durable = backend._parse_topic('request:tg:prompt:default')
assert name == 'tg.request.prompt:default'
assert name == 'tg.request.prompt.default'
class TestKafkaRetention: