Skip to content

Commit

Permalink
Fix pubsub client
Browse files Browse the repository at this point in the history
  • Loading branch information
Zollerboy1 committed Jan 13, 2025
1 parent 25aa71a commit 40360ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hyveos/pubsub.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ async def _subscribe_callback(

async with self.subscriptions_lock:
if topic not in self.subscriptions:
stream = self.gos.subscribe(topic)
stream = await self.gos.subscribe(topic)
self.subscriptions[topic] = Subscription(
stream,
self.received_messages_publisher,
Expand Down

0 comments on commit 40360ef

Please sign in to comment.