-
Notifications
You must be signed in to change notification settings - Fork 41
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ROS service exit with timeout #184
Comments
Hi, I had a quick look and tried to jog my memory... hopefully this will give you some clues. Looking at the code I guessing you made a call here: https://github.com/pyros-dev/rostful/blob/gopher-devel/rostful/api_0_1/flask_views.py#L314 In any case, attach a debugger to your server, put some breakpoints, and you will be able to track what exactly happens. It is possible this behaviour is triggered by some untested code path underneath, but the error itself only says the symbol is not defined... so it is the first thing to investigate. |
I noticed also there is a pull request impacting that part of the code for gopher-devel : https://github.com/pyros-dev/rostful/pull/108/files You should probably try it out. Let me know if that works for you, I ll merge it. |
Hi, |
Hi,
Oh good so you already started digging inside the code ;-)
From flask_views, the pyros client code is calling the service, you ll have
to follow the call path and check where to pass that timeout, I wont have
time to dig deeper at the moment.
pyzmp is a multiprocess python library i wrote to make multiprocess
communication easier(from my perspective) than what was available at the
time. It uses zeroMQ (via pyzmq) for interprocess&network communication.
Communications between ros nodes (already processes) and python processes
happens there, so I m not sure what you mean since everything is already
multiprocess by default...
Rostful is a web layer on top of all that, but to simplify things, you
should be able to do communicate with ROS just with pyros and a python
repl... although that might take some getting used to to setup everything
correctly.
Good luck, let me know how it goes ;-)
I might be able to jump on a chat session sometime next month if I can be
of some help.
Cheers,
--
AlexV
…On Sun, Jul 25, 2021, 17:55 Michael Prujan ***@***.***> wrote:
Hi,
My service respond took > 5 seconds, so I exit on timeout.
I changed /home/ubuntu/.local/lib/python2.7/site-packages/pyzmp/service.py#90
in function def call(self, args=None, kwargs=None, node=None,
send_timeout=10000, recv_timeout=20000, zmq_ctx=None):
recv_timeout from 5000 to 2000.It fixed the problem.
How can I change recv_timeout from flack_views ?
Is it possible to run my ROS services in diffent flask threads/process ?
E.g make_plan of move_base in thread1, other service in thread 2 ?
THanks in advance,
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#184 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AABWASAV4O3V422NW7WTSFDTZQXWFANCNFSM5AXV5HPA>
.
|
Hi,
I'm using ROS1 melodic, branch gopher-devel.
I'm using rostful for ROS service.
My service takes 2-3 seconds.
The ROS service returns successfully, but rostful returns with 500.
If I not call my service, but return true, everything is working.
Could please assist,
Thanks Michael
The text was updated successfully, but these errors were encountered: