]> review.fuel-infra Code Review - openstack-build/horizon-build.git/commitdiff
Update debian/patches/fix-dashboard-django-wsgi.patch: 36/36/11
authorMaksym Yatsenko <myatsenko@mirantis.com>
Mon, 20 Oct 2014 11:02:10 +0000 (14:02 +0300)
committerMaksym Yatsenko <myatsenko@mirantis.com>
Tue, 21 Oct 2014 08:09:45 +0000 (11:09 +0300)
line "application = django.core.handlers.wsgi.WSGIHandler()"
was updated to "application = get_wsgi_application()"

Change-Id: Iab9de6124ddc6a9af89faf10945752567bf0fa56

.gitreview
debian/patches/fix-dashboard-django-wsgi.patch

index 7f413bc55e17f8e4cde0cf9802c90f806b203899..4b68e8430ecd05e5b25f718fd9e0115af4fabf43 100644 (file)
@@ -1,5 +1,7 @@
 [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
+
+
index d27489db990fe6969a0cef23d1468d004cc12414..3c629abbc652e27f7365ae74ab5eee38c12903e3 100644 (file)
@@ -4,9 +4,9 @@ diff -Naurp horizon-2014.2.b2.orig/openstack_dashboard/wsgi/django.wsgi horizon-
 @@ -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()