[Bug 1287265] [NEW] Fixes required to run on trusty
Oleg Strikov
oleg.strikov at canonical.com
Mon Mar 3 17:09:03 UTC 2014
Public bug reported:
I had to do some source code changes to be able to run Horizon on trusty.
Here is a list of change in a form of error message followed by solution.
Can we update the package to be able to run it just from the box?
=======================================================================================
File "/usr/lib/python2.7/dist-packages/openstack_auth/urls.py", line 14, in <module>
from django.conf.urls.defaults import patterns, url
ImportError: No module named defaults
=======================================================================================
/usr/share/pyshared/openstack_auth/urls.py:
- from django.conf.urls.defaults import patterns, url
+ from django.conf.urls import patterns, url
=======================================================================================
File "/usr/share/openstack-dashboard/openstack_dashboard/wsgi/../../openstack_dashboard/api/__init__.py", line 36, in <module>
from openstack_dashboard.api import base
ImportError: cannot import name base
=======================================================================================
/usr/share/openstack-dashboard/openstack_dashboard/api/__init__.py
- from openstack_dashboard.api import base
- from openstack_dashboard.api import ceilometer
- from openstack_dashboard.api import cinder
- from openstack_dashboard.api import fwaas
- from openstack_dashboard.api import glance
- from openstack_dashboard.api import heat
- from openstack_dashboard.api import keystone
- from openstack_dashboard.api import lbaas
- from openstack_dashboard.api import network
- from openstack_dashboard.api import neutron
- from openstack_dashboard.api import nova
- from openstack_dashboard.api import swift
- from openstack_dashboard.api import trove
- from openstack_dashboard.api import vpn
+ import base
+ import ceilometer
+ import cinder
+ import fwaas
+ import glance
+ import heat
+ import keystone
+ import lbaas
+ import network
+ import neutron
+ import nova
+ import swift
+ import trove
+ import vpn
=========================================================================================
File "/usr/share/openstack-dashboard/openstack_dashboard/wsgi/../../openstack_dashboard/api/trove.py", line 20, in <module>
from troveclient.v1 import client
ImportError: No module named v1
=========================================================================================
/usr/share/openstack-dashboard/openstack_dashboard/api/trove.py
- from troveclient.v1 import client
+ from troveclient import client
=========================================================================================
File "/usr/lib/python2.7/dist-packages/django/contrib/auth/forms.py", line 175, in __init__
super(AuthenticationForm, self).__init__(*args, **kwargs)
TypeError: __init__() got multiple values for keyword argument 'data'
=========================================================================================
/usr/lib/python2.7/dist-packages/openstack_auth/forms.py:54
- super(Login, self).__init__(*args, **kwargs)
+ super(Login, self).__init__(**kwargs)
** Affects: horizon (Ubuntu)
Importance: Undecided
Status: New
** Description changed:
I had to do some source code changes to be able to run Horizon on trusty.
Here is a list of change in a form of error message followed by solution.
Can we update the package to be able to run it just from the box?
- ====================================================================================================
+ =======================================================================================
- [Mon Mar 03 14:05:11.309641 2014] [:error] [pid 2765:tid 3010790448] [remote 10.229.37.209:30131] Traceback (most recent call last):
- [Mon Mar 03 14:05:11.309705 2014] [:error] [pid 2765:tid 3010790448] [remote 10.229.37.209:30131] File "/usr/lib/python2.7/dist-packages/django/core/handlers/wsgi.py", line 187, in __call__
- [Mon Mar 03 14:05:11.309970 2014] [:error] [pid 2765:tid 3010790448] [remote 10.229.37.209:30131] self.load_middleware()
- [Mon Mar 03 14:05:11.310010 2014] [:error] [pid 2765:tid 3010790448] [remote 10.229.37.209:30131] File "/usr/lib/python2.7/dist-packages/django/core/handlers/base.py", line 49, in load_middleware
- [Mon Mar 03 14:05:11.310344 2014] [:error] [pid 2765:tid 3010790448] [remote 10.229.37.209:30131] mw_instance = mw_class()
- [Mon Mar 03 14:05:11.310384 2014] [:error] [pid 2765:tid 3010790448] [remote 10.229.37.209:30131] File "/usr/lib/python2.7/dist-packages/django/middleware/locale.py", line 24, in __init__
- [Mon Mar 03 14:05:11.310579 2014] [:error] [pid 2765:tid 3010790448] [remote 10.229.37.209:30131] for url_pattern in get_resolver(None).url_patterns:
- [Mon Mar 03 14:05:11.310633 2014] [:error] [pid 2765:tid 3010790448] [remote 10.229.37.209:30131] File "/usr/lib/python2.7/dist-packages/django/core/urlresolvers.py", line 346, in url_patterns
- [Mon Mar 03 14:05:11.311117 2014] [:error] [pid 2765:tid 3010790448] [remote 10.229.37.209:30131] patterns = getattr(self.urlconf_module, "urlpatterns", self.urlconf_module)
- [Mon Mar 03 14:05:11.311157 2014] [:error] [pid 2765:tid 3010790448] [remote 10.229.37.209:30131] File "/usr/lib/python2.7/dist-packages/django/core/urlresolvers.py", line 341, in urlconf_module
- [Mon Mar 03 14:05:11.311220 2014] [:error] [pid 2765:tid 3010790448] [remote 10.229.37.209:30131] self._urlconf_module = import_module(self.urlconf_name)
- [Mon Mar 03 14:05:11.311256 2014] [:error] [pid 2765:tid 3010790448] [remote 10.229.37.209:30131] File "/usr/lib/python2.7/dist-packages/django/utils/importlib.py", line 40, in import_module
- [Mon Mar 03 14:05:11.311400 2014] [:error] [pid 2765:tid 3010790448] [remote 10.229.37.209:30131] __import__(name)
- [Mon Mar 03 14:05:11.311438 2014] [:error] [pid 2765:tid 3010790448] [remote 10.229.37.209:30131] File "/usr/share/openstack-dashboard/openstack_dashboard/wsgi/../../openstack_dashboard/urls.py", line 37, in <module>
- [Mon Mar 03 14:05:11.311603 2014] [:error] [pid 2765:tid 3010790448] [remote 10.229.37.209:30131] url(r'^auth/', include('openstack_auth.urls')),
- [Mon Mar 03 14:05:11.311642 2014] [:error] [pid 2765:tid 3010790448] [remote 10.229.37.209:30131] File "/usr/lib/python2.7/dist-packages/django/conf/urls/__init__.py", line 26, in include
- [Mon Mar 03 14:05:11.311844 2014] [:error] [pid 2765:tid 3010790448] [remote 10.229.37.209:30131] urlconf_module = import_module(urlconf_module)
- [Mon Mar 03 14:05:11.311893 2014] [:error] [pid 2765:tid 3010790448] [remote 10.229.37.209:30131] File "/usr/lib/python2.7/dist-packages/django/utils/importlib.py", line 40, in import_module
- [Mon Mar 03 14:05:11.311978 2014] [:error] [pid 2765:tid 3010790448] [remote 10.229.37.209:30131] __import__(name)
- [Mon Mar 03 14:05:11.312014 2014] [:error] [pid 2765:tid 3010790448] [remote 10.229.37.209:30131] File "/usr/lib/python2.7/dist-packages/openstack_auth/urls.py", line 14, in <module>
- [Mon Mar 03 14:05:11.312158 2014] [:error] [pid 2765:tid 3010790448] [remote 10.229.37.209:30131] from django.conf.urls.defaults import patterns, url
- [Mon Mar 03 14:05:11.312211 2014] [:error] [pid 2765:tid 3010790448] [remote 10.229.37.209:30131] ImportError: No module named defaults
+ File "/usr/lib/python2.7/dist-packages/openstack_auth/urls.py", line 14, in <module>
+ from django.conf.urls.defaults import patterns, url
+ ImportError: No module named defaults
- ====================================================================================================
+ =======================================================================================
/usr/share/pyshared/openstack_auth/urls.py:
- from django.conf.urls.defaults import patterns, url
+ from django.conf.urls import patterns, url
- ====================================================================================================
+ =======================================================================================
- [Mon Mar 03 14:31:24.915888 2014] [:error] [pid 2766:tid 3044344880] [remote 10.229.37.209:30133] Traceback (most recent call last):
- [Mon Mar 03 14:31:24.915947 2014] [:error] [pid 2766:tid 3044344880] [remote 10.229.37.209:30133] File "/usr/lib/python2.7/dist-packages/django/core/handlers/wsgi.py", line 187, in __call__
- [Mon Mar 03 14:31:24.916217 2014] [:error] [pid 2766:tid 3044344880] [remote 10.229.37.209:30133] self.load_middleware()
- [Mon Mar 03 14:31:24.916257 2014] [:error] [pid 2766:tid 3044344880] [remote 10.229.37.209:30133] File "/usr/lib/python2.7/dist-packages/django/core/handlers/base.py", line 49, in load_middleware
- [Mon Mar 03 14:31:24.916583 2014] [:error] [pid 2766:tid 3044344880] [remote 10.229.37.209:30133] mw_instance = mw_class()
- [Mon Mar 03 14:31:24.916627 2014] [:error] [pid 2766:tid 3044344880] [remote 10.229.37.209:30133] File "/usr/lib/python2.7/dist-packages/django/middleware/locale.py", line 24, in __init__
- [Mon Mar 03 14:31:24.916816 2014] [:error] [pid 2766:tid 3044344880] [remote 10.229.37.209:30133] for url_pattern in get_resolver(None).url_patterns:
- [Mon Mar 03 14:31:24.916861 2014] [:error] [pid 2766:tid 3044344880] [remote 10.229.37.209:30133] File "/usr/lib/python2.7/dist-packages/django/core/urlresolvers.py", line 346, in url_patterns
- [Mon Mar 03 14:31:24.917380 2014] [:error] [pid 2766:tid 3044344880] [remote 10.229.37.209:30133] patterns = getattr(self.urlconf_module, "urlpatterns", self.urlconf_module)
- [Mon Mar 03 14:31:24.917423 2014] [:error] [pid 2766:tid 3044344880] [remote 10.229.37.209:30133] File "/usr/lib/python2.7/dist-packages/django/core/urlresolvers.py", line 341, in urlconf_module
- [Mon Mar 03 14:31:24.917488 2014] [:error] [pid 2766:tid 3044344880] [remote 10.229.37.209:30133] self._urlconf_module = import_module(self.urlconf_name)
- [Mon Mar 03 14:31:24.917525 2014] [:error] [pid 2766:tid 3044344880] [remote 10.229.37.209:30133] File "/usr/lib/python2.7/dist-packages/django/utils/importlib.py", line 40, in import_module
- [Mon Mar 03 14:31:24.917697 2014] [:error] [pid 2766:tid 3044344880] [remote 10.229.37.209:30133] __import__(name)
- [Mon Mar 03 14:31:24.917739 2014] [:error] [pid 2766:tid 3044344880] [remote 10.229.37.209:30133] File "/usr/share/openstack-dashboard/openstack_dashboard/wsgi/../../openstack_dashboard/urls.py", line 38, in <module>
- [Mon Mar 03 14:31:24.917903 2014] [:error] [pid 2766:tid 3044344880] [remote 10.229.37.209:30133] url(r'', include(horizon.urls))
- [Mon Mar 03 14:31:24.917948 2014] [:error] [pid 2766:tid 3044344880] [remote 10.229.37.209:30133] File "/usr/lib/python2.7/dist-packages/django/conf/urls/__init__.py", line 27, in include
- [Mon Mar 03 14:31:24.918238 2014] [:error] [pid 2766:tid 3044344880] [remote 10.229.37.209:30133] patterns = getattr(urlconf_module, 'urlpatterns', urlconf_module)
- [Mon Mar 03 14:31:24.918284 2014] [:error] [pid 2766:tid 3044344880] [remote 10.229.37.209:30133] File "/usr/lib/python2.7/dist-packages/django/utils/functional.py", line 213, in inner
- [Mon Mar 03 14:31:24.928218 2014] [:error] [pid 2766:tid 3044344880] [remote 10.229.37.209:30133] self._setup()
- [Mon Mar 03 14:31:24.928281 2014] [:error] [pid 2766:tid 3044344880] [remote 10.229.37.209:30133] File "/usr/lib/python2.7/dist-packages/django/utils/functional.py", line 298, in _setup
- [Mon Mar 03 14:31:24.928342 2014] [:error] [pid 2766:tid 3044344880] [remote 10.229.37.209:30133] self._wrapped = self._setupfunc()
- [Mon Mar 03 14:31:24.928377 2014] [:error] [pid 2766:tid 3044344880] [remote 10.229.37.209:30133] File "/usr/lib/python2.7/dist-packages/horizon/base.py", line 730, in url_patterns
- [Mon Mar 03 14:31:24.928980 2014] [:error] [pid 2766:tid 3044344880] [remote 10.229.37.209:30133] return self._urls()[0]
- [Mon Mar 03 14:31:24.929018 2014] [:error] [pid 2766:tid 3044344880] [remote 10.229.37.209:30133] File "/usr/lib/python2.7/dist-packages/horizon/base.py", line 737, in _urls
- [Mon Mar 03 14:31:24.929075 2014] [:error] [pid 2766:tid 3044344880] [remote 10.229.37.209:30133] self._autodiscover()
- [Mon Mar 03 14:31:24.929109 2014] [:error] [pid 2766:tid 3044344880] [remote 10.229.37.209:30133] File "/usr/lib/python2.7/dist-packages/horizon/base.py", line 782, in _autodiscover
- [Mon Mar 03 14:31:24.929171 2014] [:error] [pid 2766:tid 3044344880] [remote 10.229.37.209:30133] import_module('%s.%s' % (app, mod_name))
- [Mon Mar 03 14:31:24.929206 2014] [:error] [pid 2766:tid 3044344880] [remote 10.229.37.209:30133] File "/usr/lib/python2.7/dist-packages/django/utils/importlib.py", line 40, in import_module
- [Mon Mar 03 14:31:24.929262 2014] [:error] [pid 2766:tid 3044344880] [remote 10.229.37.209:30133] __import__(name)
- [Mon Mar 03 14:31:24.929297 2014] [:error] [pid 2766:tid 3044344880] [remote 10.229.37.209:30133] File "/usr/share/openstack-dashboard/openstack_dashboard/wsgi/../../openstack_dashboard/dashboards/router/dashboard.py", line 19, in <module>
- [Mon Mar 03 14:31:24.929445 2014] [:error] [pid 2766:tid 3044344880] [remote 10.229.37.209:30133] from openstack_dashboard.api import neutron
- [Mon Mar 03 14:31:24.929489 2014] [:error] [pid 2766:tid 3044344880] [remote 10.229.37.209:30133] File "/usr/share/openstack-dashboard/openstack_dashboard/wsgi/../../openstack_dashboard/api/__init__.py", line 36, in <module>
- [Mon Mar 03 14:31:24.929654 2014] [:error] [pid 2766:tid 3044344880] [remote 10.229.37.209:30133] from openstack_dashboard.api import base
- [Mon Mar 03 14:31:24.929710 2014] [:error] [pid 2766:tid 3044344880] [remote 10.229.37.209:30133] ImportError: cannot import name base
+ File "/usr/share/openstack-dashboard/openstack_dashboard/wsgi/../../openstack_dashboard/api/__init__.py", line 36, in <module>
+ from openstack_dashboard.api import base
+ ImportError: cannot import name base
- ====================================================================================================
+ =======================================================================================
/usr/share/openstack-dashboard/openstack_dashboard/api/__init__.py
- from openstack_dashboard.api import base
- from openstack_dashboard.api import ceilometer
- from openstack_dashboard.api import cinder
- from openstack_dashboard.api import fwaas
- from openstack_dashboard.api import glance
- from openstack_dashboard.api import heat
- from openstack_dashboard.api import keystone
- from openstack_dashboard.api import lbaas
- from openstack_dashboard.api import network
- from openstack_dashboard.api import neutron
- from openstack_dashboard.api import nova
- from openstack_dashboard.api import swift
- from openstack_dashboard.api import trove
- from openstack_dashboard.api import vpn
+ import base
+ import ceilometer
+ import cinder
+ import fwaas
+ import glance
+ import heat
+ import keystone
+ import lbaas
+ import network
+ import neutron
+ import nova
+ import swift
+ import trove
+ import vpn
- ====================================================================================================
+ =========================================================================================
- [Mon Mar 03 14:35:58.136455 2014] [:error] [pid 2767:tid 3035956272] [remote 10.229.37.209:62900] Traceback (most recent call last):
- [Mon Mar 03 14:35:58.136513 2014] [:error] [pid 2767:tid 3035956272] [remote 10.229.37.209:62900] File "/usr/lib/python2.7/dist-packages/django/core/handlers/wsgi.py", line 187, in __call__
- [Mon Mar 03 14:35:58.136769 2014] [:error] [pid 2767:tid 3035956272] [remote 10.229.37.209:62900] self.load_middleware()
- [Mon Mar 03 14:35:58.136809 2014] [:error] [pid 2767:tid 3035956272] [remote 10.229.37.209:62900] File "/usr/lib/python2.7/dist-packages/django/core/handlers/base.py", line 49, in load_middleware
- [Mon Mar 03 14:35:58.137123 2014] [:error] [pid 2767:tid 3035956272] [remote 10.229.37.209:62900] mw_instance = mw_class()
- [Mon Mar 03 14:35:58.137164 2014] [:error] [pid 2767:tid 3035956272] [remote 10.229.37.209:62900] Fihttps://www.google.ru/search?client=ubuntu&channel=fs&q=openstack+github&ie=utf-8&oe=utf-8&gfe_rd=cr&ei=yJQUU9PJF4yk4ATC44DoAwle "/usr/lib/python2.7/dist-packages/django/middleware/locale.py", line 24, in __init__
- [Mon Mar 03 14:35:58.137346 2014] [:error] [pid 2767:tid 3035956272] [remote 10.229.37.209:62900] for url_pattern in get_resolver(None).url_patterns:
- [Mon Mar 03 14:35:58.137390 2014] [:error] [pid 2767:tid 3035956272] [remote 10.229.37.209:62900] File "/usr/lib/python2.7/dist-packages/django/core/urlresolvers.py", line 346, in url_patterns
- [Mon Mar 03 14:35:58.137900 2014] [:error] [pid 2767:tid 3035956272] [remote 10.229.37.209:62900] patterns = getattr(self.urlconf_module, "urlpatterns", self.urlconf_module)
- [Mon Mar 03 14:35:58.137960 2014] [:error] [pid 2767:tid 3035956272] [remote 10.229.37.209:62900] File "/usr/lib/python2.7/dist-packages/django/core/urlresolvers.py", line 341, in urlconf_module
- [Mon Mar 03 14:35:58.138020 2014] [:error] [pid 2767:tid 3035956272] [remote 10.229.37.209:62900] self._urlconf_module = import_module(self.urlconf_name)
- [Mon Mar 03 14:35:58.138055 2014] [:error] [pid 2767:tid 3035956272] [remote 10.229.37.209:62900] File "/usr/lib/python2.7/dist-packages/django/utils/importlib.py", line 40, in import_module
- [Mon Mar 03 14:35:58.138196 2014] [:error] [pid 2767:tid 3035956272] [remote 10.229.37.209:62900] __import__(name)
- [Mon Mar 03 14:35:58.138232 2014] [:error] [pid 2767:tid 3035956272] [remote 10.229.37.209:62900] File "/usr/share/openstack-dashboard/openstack_dashboard/wsgi/../../openstack_dashboard/urls.py", line 38, in <module>
- [Mon Mar 03 14:35:58.138389 2014] [:error] [pid 2767:tid 3035956272] [remote 10.229.37.209:62900] url(r'', include(horizon.urls))
- [Mon Mar 03 14:35:58.138425 2014] [:error] [pid 2767:tid 3035956272] [remote 10.229.37.209:62900] File "/usr/lib/python2.7/dist-packages/django/conf/urls/__init__.py", line 27, in include
- [Mon Mar 03 14:35:58.138597 2014] [:error] [pid 2767:tid 3035956272] [remote 10.229.37.209:62900] patterns = getattr(urlconf_module, 'urlpatterns', urlconf_module)
- [Mon Mar 03 14:35:58.138639 2014] [:error] [pid 2767:tid 3035956272] [remote 10.229.37.209:62900] File "/usr/lib/python2.7/dist-packages/django/utils/functional.py", line 213, in inner
- [Mon Mar 03 14:35:58.139028 2014] [:error] [pid 2767:tid 3035956272] [remote 10.229.37.209:62900] self._setup()
- [Mon Mar 03 14:35:58.139064 2014] [:error] [pid 2767:tid 3035956272] [remote 10.229.37.209:62900] File "/usr/lib/python2.7/dist-packages/django/utils/functional.py", line 298, in _setup
- [Mon Mar 03 14:35:58.139121 2014] [:error] [pid 2767:tid 3035956272] [remote 10.229.37.209:62900] self._wrapped = self._setupfunc()
- [Mon Mar 03 14:35:58.139154 2014] [:error] [pid 2767:tid 3035956272] [remote 10.229.37.209:62900] File "/usr/lib/python2.7/dist-packages/horizon/base.py", line 730, in url_patterns
- [Mon Mar 03 14:35:58.139783 2014] [:error] [pid 2767:tid 3035956272] [remote 10.229.37.209:62900] return self._urls()[0]
- [Mon Mar 03 14:35:58.139826 2014] [:error] [pid 2767:tid 3035956272] [remote 10.229.37.209:62900] File "/usr/lib/python2.7/dist-packages/horizon/base.py", line 737, in _urls
- [Mon Mar 03 14:35:58.139888 2014] [:error] [pid 2767:tid 3035956272] [remote 10.229.37.209:62900] self._autodiscover()
- [Mon Mar 03 14:35:58.139924 2014] [:error] [pid 2767:tid 3035956272] [remote 10.229.37.209:62900] File "/usr/lib/python2.7/dist-packages/horizon/base.py", line 782, in _autodiscover
- [Mon Mar 03 14:35:58.139994 2014] [:error] [pid 2767:tid 3035956272] [remote 10.229.37.209:62900] import_module('%s.%s' % (app, mod_name))
- [Mon Mar 03 14:35:58.140028 2014] [:error] [pid 2767:tid 3035956272] [remote 10.229.37.209:62900] File "/usr/lib/python2.7/dist-packages/django/utils/importlib.py", line 40, in import_module
- [Mon Mar 03 14:35:58.140083 2014] [:error] [pid 2767:tid 3035956272] [remote 10.229.37.209:62900] __import__(name)
- [Mon Mar 03 14:35:58.140119 2014] [:error] [pid 2767:tid 3035956272] [remote 10.229.37.209:62900] File "/usr/share/openstack-dashboard/openstack_dashboard/wsgi/../../openstack_dashboard/dashboards/router/dashboard.py", line 19, in <module>
- [Mon Mar 03 14:35:58.140269 2014] [:error] [pid 2767:tid 3035956272] [remote 10.229.37.209:62900] from openstack_dashboard.api import neutron
- [Mon Mar 03 14:35:58.140313 2014] [:error] [pid 2767:tid 3035956272] [remote 10.229.37.209:62900] File "/usr/share/openstack-dashboard/openstack_dashboard/wsgi/../../openstack_dashboard/api/__init__.py", line 48, in <module>
- [Mon Mar 03 14:35:58.140510 2014] [:error] [pid 2767:tid 3035956272] [remote 10.229.37.209:62900] import trove
- [Mon Mar 03 14:35:58.140548 2014] [:error] [pid 2767:tid 3035956272] [remote 10.229.37.209:62900] File "/usr/share/openstack-dashboard/openstack_dashboard/wsgi/../../openstack_dashboard/api/trove.py", line 20, in <module>
- [Mon Mar 03 14:35:58.140764 2014] [:error] [pid 2767:tid 3035956272] [remote 10.229.37.209:62900] from troveclient.v1 import client
- [Mon Mar 03 14:35:58.140819 2014] [:error] [pid 2767:tid 3035956272] [remote 10.229.37.209:62900] ImportError: No module named v1
+ File "/usr/share/openstack-dashboard/openstack_dashboard/wsgi/../../openstack_dashboard/api/trove.py", line 20, in <module>
+ from troveclient.v1 import client
+ ImportError: No module named v1
- ====================================================================================================
+ =========================================================================================
/usr/share/openstack-dashboard/openstack_dashboard/api/trove.py
- from troveclient.v1 import client
+ from troveclient import client
- ====================================================================================================
+ =========================================================================================
+ File "/usr/lib/python2.7/dist-packages/django/contrib/auth/forms.py", line 175, in __init__
+ super(AuthenticationForm, self).__init__(*args, **kwargs)
+ TypeError: __init__() got multiple values for keyword argument 'data'
- [Mon Mar 03 14:44:43.686572 2014] [:error] [pid 2767:tid 2968847408] Traceback (most recent call last):
- [Mon Mar 03 14:44:43.686594 2014] [:error] [pid 2767:tid 2968847408] File "/usr/lib/python2.7/dist-packages/django/core/handlers/base.py", line 114, in get_response
- [Mon Mar 03 14:44:43.686615 2014] [:error] [pid 2767:tid 2968847408] response = wrapped_callback(request, *callback_args, **callback_kwargs)
- [Mon Mar 03 14:44:43.686636 2014] [:error] [pid 2767:tid 2968847408] File "/usr/lib/python2.7/dist-packages/django/views/decorators/debug.py", line 75, in sensitive_post_parameters_wrapper
- [Mon Mar 03 14:44:43.686657 2014] [:error] [pid 2767:tid 2968847408] return view(request, *args, **kwargs)
- [Mon Mar 03 14:44:43.686677 2014] [:error] [pid 2767:tid 2968847408] File "/usr/lib/python2.7/dist-packages/django/utils/decorators.py", line 99, in _wrapped_view
- [Mon Mar 03 14:44:43.686698 2014] [:error] [pid 2767:tid 2968847408] response = view_func(request, *args, **kwargs)
- [Mon Mar 03 14:44:43.686717 2014] [:error] [pid 2767:tid 2968847408] File "/usr/lib/python2.7/dist-packages/django/views/decorators/cache.py", line 52, in _wrapped_view_func
- [Mon Mar 03 14:44:43.686737 2014] [:error] [pid 2767:tid 2968847408] response = view_func(request, *args, **kwargs)
- [Mon Mar 03 14:44:43.686757 2014] [:error] [pid 2767:tid 2968847408] File "/usr/lib/python2.7/dist-packages/openstack_auth/views.py", line 73, in login
- [Mon Mar 03 14:44:43.686779 2014] [:error] [pid 2767:tid 2968847408] extra_context=extra_context)
- [Mon Mar 03 14:44:43.686800 2014] [:error] [pid 2767:tid 2968847408] File "/usr/lib/python2.7/dist-packages/django/views/decorators/debug.py", line 75, in sensitive_post_parameters_wrapper
- [Mon Mar 03 14:44:43.686822 2014] [:error] [pid 2767:tid 2968847408] return view(request, *args, **kwargs)
- [Mon Mar 03 14:44:43.686843 2014] [:error] [pid 2767:tid 2968847408] File "/usr/lib/python2.7/dist-packages/django/utils/decorators.py", line 99, in _wrapped_view
- [Mon Mar 03 14:44:43.686865 2014] [:error] [pid 2767:tid 2968847408] response = view_func(request, *args, **kwargs)
- [Mon Mar 03 14:44:43.686888 2014] [:error] [pid 2767:tid 2968847408] File "/usr/lib/python2.7/dist-packages/django/views/decorators/cache.py", line 52, in _wrapped_view_func
- [Mon Mar 03 14:44:43.686910 2014] [:error] [pid 2767:tid 2968847408] response = view_func(request, *args, **kwargs)
- [Mon Mar 03 14:44:43.686930 2014] [:error] [pid 2767:tid 2968847408] File "/usr/lib/python2.7/dist-packages/django/contrib/auth/views.py", line 35, in login
- [Mon Mar 03 14:44:43.686952 2014] [:error] [pid 2767:tid 2968847408] form = authentication_form(request, data=request.POST)
- [Mon Mar 03 14:44:43.686973 2014] [:error] [pid 2767:tid 2968847408] File "/usr/lib/python2.7/dist-packages/django/utils/functional.py", line 15, in _curried
- [Mon Mar 03 14:44:43.686993 2014] [:error] [pid 2767:tid 2968847408] return _curried_func(*(args + moreargs), **dict(kwargs, **morekwargs))
- [Mon Mar 03 14:44:43.687015 2014] [:error] [pid 2767:tid 2968847408] File "/usr/lib/python2.7/dist-packages/openstack_auth/forms.py", line 54, in __init__
- [Mon Mar 03 14:44:43.687037 2014] [:error] [pid 2767:tid 2968847408] super(Login, self).__init__(*args, **kwargs)
- [Mon Mar 03 14:44:43.687057 2014] [:error] [pid 2767:tid 2968847408] File "/usr/lib/python2.7/dist-packages/django/contrib/auth/forms.py", line 175, in __init__
- [Mon Mar 03 14:44:43.687077 2014] [:error] [pid 2767:tid 2968847408] super(AuthenticationForm, self).__init__(*args, **kwargs)
- [Mon Mar 03 14:44:43.687118 2014] [:error] [pid 2767:tid 2968847408] TypeError: __init__() got multiple values for keyword argument 'data'
-
- ====================================================================================================
+ =========================================================================================
/usr/lib/python2.7/dist-packages/openstack_auth/forms.py:54
- super(Login, self).__init__(*args, **kwargs)
+ super(Login, self).__init__(**kwargs)
--
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to horizon in Ubuntu.
https://bugs.launchpad.net/bugs/1287265
Title:
Fixes required to run on trusty
To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/horizon/+bug/1287265/+subscriptions
More information about the Ubuntu-server-bugs
mailing list