Skip to content

Commit 080c8a5

Browse files
committed
[sim] Wait longer for IF and FK services
1 parent f17f2a8 commit 080c8a5

File tree

1 file changed

+2
-2
lines changed
  • intera_interface/src/intera_interface

1 file changed

+2
-2
lines changed

intera_interface/src/intera_interface/limb.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -163,8 +163,8 @@ def __init__(self, limb="right", synchronous_pub=False):
163163
ns_pkn = "ExternalTools/" + limb + "/PositionKinematicsNode/"
164164
self._iksvc = rospy.ServiceProxy(ns_pkn + 'IKService', SolvePositionIK)
165165
self._fksvc = rospy.ServiceProxy(ns_pkn + 'FKService', SolvePositionFK)
166-
rospy.wait_for_service(ns_pkn + 'IKService', 5.0)
167-
rospy.wait_for_service(ns_pkn + 'FKService', 5.0)
166+
rospy.wait_for_service(ns_pkn + 'IKService', 60.0)
167+
rospy.wait_for_service(ns_pkn + 'FKService', 60.0)
168168

169169
err_msg = ("%s limb init failed to get current joint_states "
170170
"from %s") % (self.name.capitalize(), joint_state_topic)

0 commit comments

Comments
 (0)