fix horizon

Apply patch 06c81a4a071270f4ba9ffabf218f0b187e141e22 from
openstack/manila-ui with commit message:

   Fix get_disabled_quotas

  Disabled quotas should be treated as a set, not as a list, or else
  instead of action buttons we'll get a traceback:

  File "/manila-ui/manila_ui/dashboards/project/shares/__init__.py",
      line 129, in get_disabled_quotas
      disabled_quotas.extend(_get_manila_disabled_quotas(request))
  AttributeError: 'set' object has no attribute 'extend'

  Closes-Bug: #1611368

Change-Id: I262c0dc15073c89b8c4df4b57bd147384ec4cc9f
This commit is contained in:
Igor Gajsin 2016-09-14 17:17:10 +03:00
parent 771bf126f3
commit 565af9b042
1 changed files with 5 additions and 1 deletions

View File

@ -13,8 +13,12 @@ cd repositories/python
build_deb "1:2.0.1" manila
sed -i s/'python-keystoneclient'/'#python-keystoneclient'/ manila-ui/requirements.txt
sed -i s/'disabled_quotas.extend(_get_manila_disabled_quotas(request))'/'disabled_quotas.update(_get_manila_disabled_quotas(request))'/ manila-ui/manila_ui/dashboards/project/shares/__init__.py
build_deb 2.1.1 manila-ui
cd manila-ui; git checkout stable/mitaka; git checkout -- requirements.txt; cd ..
cd manila-ui; git checkout stable/mitaka;
git checkout -- requirements.txt;
git checkout -- manila_ui/dashboards/project/shares/__init__.py
cd ..
sed -i s/'python-keystoneclient'/'#python-keystoneclient'/ python-manilaclient/requirements.txt
sed -i s/'pycrypto'/'#pycrypto'/ python-manilaclient/requirements.txt