Docs: update link for remote debugging

The section on remote debugging points to a blog post that not longer
exists. This updates the invalid link.

The patch also adds in some new lines and bullets.
TrivialFix

Change-Id: I8b29f402f148bc11279a2c34aeea266956180bc1
This commit is contained in:
Gary Kotton 2018-08-13 02:16:29 -07:00
parent a77f11c9c1
commit 21a70f7db5

View File

@ -160,16 +160,18 @@ OpenStack CI environment and replicate it in your test environment.
Using a remote debugger Using a remote debugger
======================= =======================
Some modern IDE such as pycharm (commercial) or Eclipse (open source) support remote debugging. In order to run nova with remote debugging, start the nova process Some modern IDE such as pycharm (commercial) or Eclipse (open source) support remote debugging. In order to
with the following parameters run nova with remote debugging, start the nova process with the following parameters::
--remote_debug-host <host IP where the debugger is running>
--remote_debug-port <port it is listening on>
Before you start your nova process, start the remote debugger using the instructions for that debugger. --remote_debug-host <host IP where the debugger is running>
For pycharm - http://blog.jetbrains.com/pycharm/2010/12/python-remote-debug-with-pycharm/ --remote_debug-port <port it is listening on>
For Eclipse - http://pydev.org/manual_adv_remote_debugger.html
More detailed instructions are located here - http://novaremotedebug.blogspot.com Before you start your nova process, start the remote debugger using the instructions for that debugger:
* For pycharm - http://blog.jetbrains.com/pycharm/2010/12/python-remote-debug-with-pycharm/
* For Eclipse - http://pydev.org/manual_adv_remote_debugger.html
More detailed instructions are located here - https://wiki.openstack.org/wiki/Nova/RemoteDebugging
Using fake computes for tests Using fake computes for tests
============================= =============================