From 3194505b8f2f5fbf8301257681e815fc7a7c41dc Mon Sep 17 00:00:00 2001 From: Maksym Yatsenko Date: Mon, 20 Oct 2014 14:02:10 +0300 Subject: [PATCH] Update debian/patches/fix-dashboard-django-wsgi.patch: line "application = django.core.handlers.wsgi.WSGIHandler()" was updated to "application = get_wsgi_application()" Change-Id: Iab9de6124ddc6a9af89faf10945752567bf0fa56 --- .gitreview | 6 ++++-- debian/patches/fix-dashboard-django-wsgi.patch | 6 +++--- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/.gitreview b/.gitreview index 7f413bc..4b68e84 100644 --- a/.gitreview +++ b/.gitreview @@ -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 + + diff --git a/debian/patches/fix-dashboard-django-wsgi.patch b/debian/patches/fix-dashboard-django-wsgi.patch index d27489d..3c629ab 100644 --- a/debian/patches/fix-dashboard-django-wsgi.patch +++ b/debian/patches/fix-dashboard-django-wsgi.patch @@ -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() -- 2.45.2