FMCorz / mdk

Moodle Development Kit. A collection of tools meant to make developers' lives easier.
GNU General Public License v3.0
85 stars 47 forks source link

Add debugging, stop hang in ProcessInThread. #139

Open nwp90 opened 8 years ago

nwp90 commented 8 years ago

Had a few problems getting things going with mdk - this fixes them.

Added a little debugging (which should only show when debug is configured anyway) to make it clearer what's going on.

2 problems fixed:

1) if something is already listening on the port selenium wants to use, selenium dies immediately. This caused an exception when trying to kill a nonexistent process.

2) hung in "while True" loop. Which is unnecessary & inefficient anyway. proc.poll() check was incorrect (should have checked for "is not None"), but using communicate() is simpler, easier to read, more efficient etc. anyway.