Skip to content

Commit

Permalink
remove acars topic from zmq
Browse files Browse the repository at this point in the history
  • Loading branch information
fredclausen committed Jan 7, 2024
1 parent b53cae2 commit d7a69e1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ impl SenderServer<Publish> {
// if they aren't sub'd to the topic we're broadcasting on. This should fix the issue with moronic (hello node)
// zmq implementations not getting the message if the topic is blank.
// TODO: verify this doesn't break other kinds of zmq implementations....Like perhaps acars_router itself?
Ok(payload) => match self.socket.send(vec!["acars", &payload]).await {
Ok(payload) => match self.socket.send(vec![&payload]).await {
Ok(_) => (),
Err(e) => error!(
"[ZMQ SENDER]: Error sending message on 'acars' topic: {:?}",
Expand Down

0 comments on commit d7a69e1

Please sign in to comment.