Hide Forgot
Description of problem: I have a django project that use pywebkitgtk for some tasks. Under 1.1.6 it run perfectly on httpd + mod_wsgi. I use Xvfb for import gtk and webkit without X. After update to 1.1.8, when I import webkit under django it enter in a wait state. I downgraded to 1.1.6 and django over httpd with mod_wsgi work fine again. Version-Release number of selected component (if applicable): 1.1.8 How reproducible: import webkit inside a django project, then deploy with httpd + mod_wsgi with pywebkitgtk 1.1.6, it work. Update to 1.1.8 and then fail to load. Steps to Reproduce: 1. Create a django project and import webkit in a views function 2. Deploy with httpd + mod_wsgi 3. With pywebkitgtk 1.1.6 works fine, with 1.1.8 don't load. Actual results: Enter in a wait state Expected results: Load the module and deploy the django app. Additional info:
Created attachment 495344 [details] Example of django views.py It's is a very simple example, this view work fine with 1.1.6 but dont work with 1.1.8. I create a Xvfb instace, then set DISPLAY var in wsgi file to use this Xvfb instance. This allow import webkit without X.
Created attachment 510401 [details] The patch fixes the apache hangup.
Created attachment 510402 [details] Patch for current spec file.