Skip to content

Commit

Permalink
Fix args for consumer.send in service example
Browse files Browse the repository at this point in the history
  • Loading branch information
wbarnha authored Dec 6, 2022
1 parent 027808e commit ebc7777
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/advanced/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ async def consumer(stream):

@app.timer(1.0)
async def producer():
await consumer.send('hello')
await consumer.send(value='hello')


if __name__ == '__main__':
Expand Down

0 comments on commit ebc7777

Please sign in to comment.