Skip to content

Commit

Permalink
Fixed description message recipients
Browse files Browse the repository at this point in the history
  • Loading branch information
raphaelchang committed Feb 28, 2016
1 parent 4851b79 commit 4d5d2b0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions launch/example.launch
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<launch>
<arg name="host" default="wallar.me" />
<arg name="port" default="8080"/>
<arg name="host" default="localhost" />
<arg name="port" default="50000"/>
<node pkg="roscloud_client" type="client_node.py" name="foo_client_node" output="screen">
<param name="name" value="foo"/>
<param name="host" value="$(arg host)"/>
Expand Down
2 changes: 1 addition & 1 deletion src/client_node.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def callback(msg):
# Periodic function to send the client description.
def descriptionSend(self):
data = dict()
data["To"] = ["*"]
data["To"] = [".*"]
data["From"] = self.name
data["Topic"] = "/{}/description".format(self.name)
data["Type"] = "std_msgs/String"
Expand Down

0 comments on commit 4d5d2b0

Please sign in to comment.