Skip to content

Commit

Permalink
Revert "Only subscribe to gts topics (fixes #48)"
Browse files Browse the repository at this point in the history
This reverts commit ba2e018.

It appears that this may cause issue #61.
  • Loading branch information
kruton committed Feb 16, 2021
1 parent c184a00 commit 798f8d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion feeder/util/mqtt/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ async def start(self):
await self.connect(
"mqtt://%s:%s@localhost:1883/" % (local_username, local_password)
)
await self.subscribe([("krs/tel/gts/#", QOS_2), ("krs/api/gts/#", QOS_2)])
await self.subscribe([("#", QOS_2)])
try:
while True:
message = await self.deliver_message()
Expand Down

0 comments on commit 798f8d4

Please sign in to comment.