我正在尝试将消息转发到浮士德的内部主题。正如本例中 faust 所建议的:
https://faust.readthedocs.io/en/latest/playbooks/vskafka.html
我有以下代码
in_topic = app.topic("in_topic", internal=False, partitions=1)
batching = app.topic("batching", internal=True, partitions=1)
....
@app.agent(in_topic)
async def process(stream):
async for event in stream:
event.forward(batching)
yield
但是我在运行我的 pytest 时总是收到以下错误:
AttributeError: 'str' object has no attribute 'forward'
是否删除了此功能,或者我是否需要以不同的方式指定主题以获取事件,或者这甚至是 pytest 的问题?