Reputation: 2585
I am currently looking into OpenStack and want to know about the development environment that I could use for debugging different issues that arise when I run it on my VM. By development environment I am referring to the IDE that can help me understand the functioning and call flow of OpenStack. I have Pydev installed with Eclipse on my machine but I don't know how to run all the Openstack dameons (nova-api,nova-compute,nova-network, glance-api etc.) together in Pydev.
Any help would be much appreciated.
(P.S: I am trying to avoid pdb for now, as Pydev would allow me to see the code and my location in it more conveniently...)
Upvotes: 2
Views: 2072
Reputation: 10974
Looks like this question got asked on the OpenStack dev mailing list too on the thread [OpenStack] Development/Debugging where there are some answers.
Upvotes: 2
Reputation: 25362
I'm not familiar with OpenStack, but if you could use pdb, you could definitely use the PyDev remote debugger the same way: http://pydev.org/manual_adv_remote_debugger.html
Upvotes: 2