Skip to content

Commit 142365e

Browse files
committed
Merge branch 'develop'
2 parents 5ba97fb + f26c4d4 commit 142365e

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

nodes/benchbot_robot_controller

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
22

33
import rospy
44

nodes/debug_move_to_pose

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
22

33
from __future__ import print_function
44

nodes/noisify_odom

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
22
#
33
# This node takes a ground truth pose publishing system and converts it to the
44
# noisy "odom -> base_link" + "map -> odom" corrections when localisation

scripts/create_env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
22

33
from __future__ import print_function
44

scripts/create_env_map

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
22

33
from __future__ import print_function
44

src/benchbot_robot_controller.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@
4040
CONNS = [CONN_API_TO_ROS, CONN_ROS_TO_API, CONN_ROSCACHE_TO_API]
4141

4242
TIMEOUT_PREPARE = 120
43-
TIMEOUT_ROS_PING = 5
44-
TIMEOUT_RUN = 90
43+
TIMEOUT_ROS_PING = 20
44+
TIMEOUT_RUN = 120
4545

4646
VARIABLES = {
4747
'ENVS_PATH':
@@ -57,7 +57,7 @@
5757
'START_POSE':
5858
"self.config_env['start_pose']",
5959
'OBJECT_LABELS':
60-
'str(json.dumps([{"name": lbl.encode("ascii")} for lbl in self.config_env["object_labels"]]))'
60+
'str(json.dumps([{"name": lbl} for lbl in self.config_env["object_labels"]]))'
6161
}
6262

6363
_CMD_DELETE_FILE = 'rm -f $FILENAME'

0 commit comments

Comments
 (0)