[openstack-dev] [nova] remote debugging hangs nova-compute

2016-12-08 Thread Steve Noyes
Hi, I've been trying to get nova-compute (devstack, Newton, all-in-one) to work with the remote debugger in eclipse/pydev. (I've also tried pyCharm with the same results.) Following instructions here: http://docs.openstack.org/developer/nova/development.environment.html I see the message in th

Re: [openstack-dev] [nova] remote debugging

2013-11-28 Thread yatin kumbhare
Hello Tracy, some of the problem I faced, to execute different nova cli(s), i required to restart nova service every-time. Nova service needs to fully start/realize, before debugging can start. import pydev; works as break-point for debugger, needs to add at all the places. For ex: in case one

Re: [openstack-dev] [nova] remote debugging

2013-11-25 Thread Tracy Jones
Thanks Yatin - that is the change I am proposing in my patch On Nov 25, 2013, at 9:09 AM, yatin kumbhare wrote: > Hi, > > http://debugopenstack.blogspot.in/ > > I have done Openstack remote debugging with eclipse and pydev. > > only change is to exclude python thread library from monkey patc

Re: [openstack-dev] [nova] remote debugging

2013-11-25 Thread yatin kumbhare
Hi, http://debugopenstack.blogspot.in/ I have done Openstack remote debugging with eclipse and pydev. only change is to exclude python thread library from monkey patch at service start up. Regards, Yatin On Mon, Nov 25, 2013 at 9:10 PM, Russell Bryant wrote: > On 11/25/2013 10:28 AM, Tracy

Re: [openstack-dev] [nova] remote debugging

2013-11-25 Thread Russell Bryant
On 11/25/2013 10:28 AM, Tracy Jones wrote: > Hi Folks - i am trying to add a patch to enable remote debugging in the > nova services. I can make this work very simply, but it requires a > change to monkey_patching - i.e. > > eventlet.monkey_patch(os=False, select=True, socket=True, thread=Fal

[openstack-dev] [nova] remote debugging

2013-11-25 Thread Tracy Jones
Hi Folks - i am trying to add a patch to enable remote debugging in the nova services. I can make this work very simply, but it requires a change to monkey_patching - i.e. eventlet.monkey_patch(os=False, select=True, socket=True, thread=False, time=True, psycopg=True)