We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
import faust import asyncio app = faust.App('foo', broker = 'kafka://kafka-broker.internal:29092')), web_enabled = False) topic = app.topic('foo', key_type = str, value_type = str) async def test(): print('before start_client...') await app.start_client() print('after start_client...') return await topic.send_soon(value = 'bar') if __name__ == '__main__': loop1 = asyncio.get_event_loop() print(loop1.run_until_complete(test()))
Client-only mode is initialized and data posted to the topic
App hangs forever at app.start_client(). I believe I found the bug, PR coming shortly
app.start_client()
no error, just blocks
The text was updated successfully, but these errors were encountered:
fixes faust-streaming#197
a7cbf54
fixes #197 (#198)
3959268
Co-authored-by: David Parker <dparker@novacoast.com>
Successfully merging a pull request may close this issue.
Steps to reproduce
Expected behavior
Client-only mode is initialized and data posted to the topic
Actual behavior
App hangs forever at
app.start_client()
. I believe I found the bug, PR coming shortlyFull traceback
no error, just blocks
Versions
The text was updated successfully, but these errors were encountered: