Skip to content

Commit

Permalink
Merge pull request #285 from tue-robotics/fix/api-timeout
Browse files Browse the repository at this point in the history
fix(Api) Timeout is passed to HMI server
  • Loading branch information
LoyVanBeek committed May 23, 2017
2 parents dd7627a + 4441e16 commit 0069217
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion robot_skills/src/robot_skills/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def query(self, description, grammar, target, timeout=10):
"""
Perform a HMI query, returns a HMIResult
"""
return self._client.query(description, grammar, target)
return self._client.query(description, grammar, target, timeout)

@property
def last_talker_id(self):
Expand Down

0 comments on commit 0069217

Please sign in to comment.