line "application = django.core.handlers.wsgi.WSGIHandler()"
was updated to "application = get_wsgi_application()"
Change-Id: Iab9de6124ddc6a9af89faf10945752567bf0fa56
[gerrit]
-host=gerrit.mirantis.com
+host=review.fuel-infra.org
port=29418
-project=openstack-ci/openstack/horizon-build
+project=openstack-build/horizon-build
defaultbranch=master
+
+
@@ -9,6 +9,8 @@ sys.path.insert(0, os.path.join(os.path.
os.environ['DJANGO_SETTINGS_MODULE'] = 'openstack_dashboard.settings'
sys.stdout = sys.stderr
-
+
+sys.path.append("/usr/share/openstack-dashboard/")
+
DEBUG = False
-
- application = django.core.handlers.wsgi.WSGIHandler()
+
+ application = get_wsgi_application()