[Yahoo-eng-team] [Bug 1196924] Re: Stop and Delete operations should give the Guest a chance to shutdown

2015-07-28 Thread Launchpad Bug Tracker
This bug was fixed in the package nova - 1:2014.1.5-0ubuntu1.2

---
nova (1:2014.1.5-0ubuntu1.2) trusty; urgency=medium

  * Add rsyslog retry support (LP: #1459046)
- d/p/add-support-for-syslog-connect-retries.patch
  * Add vm clean shutdown support (LP: #1196924)
- d/p/clean-shutdown.patch

 -- Edward Hope-Morley edward.hope-mor...@canonical.com  Thu, 16 Jul
2015 11:55:57 +0100

** Changed in: nova (Ubuntu Trusty)
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Compute (nova).
https://bugs.launchpad.net/bugs/1196924

Title:
  Stop and Delete operations should give the Guest a chance to shutdown

Status in OpenStack Compute (nova):
  Fix Released
Status in nova package in Ubuntu:
  Fix Released
Status in nova source package in Trusty:
  Fix Released

Bug description:
  This feature will cause an ACPI event to be sent to the system while
  shutting down, and the acpid running inside the system can catch the
  event, thus giving the system a chance to shutdown cleanly.

  [Impact]

   * VMs being shutdown with any signal/notification from the The
  hypervisor level, services running inside VMs have no chance to
  perform a clean shutoff

  [Test Case]

   * 1. stop a VM
     2. the VM is shutdown without any notification

  The can be easily seen by ssh into the system before shutting down.
  With the patch in place, the ssh session will be close during
  shutdown, because the sshd has the chance to close the connection
  before being brought down. Without the patch, the ssh session will
  just hang there for a while until timeout, because the connection is
  not promptly closed.

  
  To leverage the clean shutdown feature, one can create a file named 
/etc/acpi/events/power that contains the following:

event=button/power
action=/etc/acpi/power.sh %e

  Then   create   a  file  named  /etc/acpi/power.sh  that  contains  whatever 
required to gracefully shutdown a particular server (VM).
  With the apicd running, shutdown of the VM will cause  the rule in 
/etc/acpi/events/power to trigger the script in /etc/acpi/power.sh, thus 
cleanly shutdown the system.

  
  [Regression Potential]

   * none

  
  Currently in libvirt stop and delete operations simply destroy the underlying 
VM. Some GuestOS's do not react well to this type of power failure, and it 
would be better if these operations followed the same approach a a soft_reboot 
and give the guest a chance to shutdown gracefully.   Even where VM is being 
deleted, it may be booted from a volume which will be reused on another server.

To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/+bug/1196924/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1479066] [NEW] DeprecationWarning: BaseException.message has been deprecated as of Python 2.6

2015-07-28 Thread Matt Riedemann
Public bug reported:

I see these when running tests:

Captured stderr:

nova/virt/libvirt/volume/volume.py:392: DeprecationWarning: 
BaseException.message has been deprecated as of Python 2.6
  if ('device is busy' in exc.message or

Seems that bug 1447946 was meant to fix some of this but it only handles
NovaException, not other usage.

We should be able to use six.text_type(e) for 'if str in e' type checks.

http://logstash.openstack.org/#eyJzZWFyY2giOiJtZXNzYWdlOlwiRGVwcmVjYXRpb25XYXJuaW5nOiBCYXNlRXhjZXB0aW9uLm1lc3NhZ2UgaGFzIGJlZW4gZGVwcmVjYXRlZCBhcyBvZiBQeXRob24gMi42XCIgQU5EIHByb2plY3Q6XCJvcGVuc3RhY2svbm92YVwiIiwiZmllbGRzIjpbXSwib2Zmc2V0IjowLCJ0aW1lZnJhbWUiOiI2MDQ4MDAiLCJncmFwaG1vZGUiOiJjb3VudCIsInRpbWUiOnsidXNlcl9pbnRlcnZhbCI6MH0sInN0YW1wIjoxNDM4MTA2MTkwOTI3fQ==

** Affects: nova
 Importance: Low
 Status: Confirmed


** Tags: low-hanging-fruit

** Changed in: nova
   Status: New = Confirmed

** Changed in: nova
   Importance: Undecided = Low

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Compute (nova).
https://bugs.launchpad.net/bugs/1479066

Title:
  DeprecationWarning: BaseException.message has been deprecated as of
  Python 2.6

Status in OpenStack Compute (nova):
  Confirmed

Bug description:
  I see these when running tests:

  Captured stderr:
  
  nova/virt/libvirt/volume/volume.py:392: DeprecationWarning: 
BaseException.message has been deprecated as of Python 2.6
if ('device is busy' in exc.message or

  Seems that bug 1447946 was meant to fix some of this but it only
  handles NovaException, not other usage.

  We should be able to use six.text_type(e) for 'if str in e' type
  checks.

  
http://logstash.openstack.org/#eyJzZWFyY2giOiJtZXNzYWdlOlwiRGVwcmVjYXRpb25XYXJuaW5nOiBCYXNlRXhjZXB0aW9uLm1lc3NhZ2UgaGFzIGJlZW4gZGVwcmVjYXRlZCBhcyBvZiBQeXRob24gMi42XCIgQU5EIHByb2plY3Q6XCJvcGVuc3RhY2svbm92YVwiIiwiZmllbGRzIjpbXSwib2Zmc2V0IjowLCJ0aW1lZnJhbWUiOiI2MDQ4MDAiLCJncmFwaG1vZGUiOiJjb3VudCIsInRpbWUiOnsidXNlcl9pbnRlcnZhbCI6MH0sInN0YW1wIjoxNDM4MTA2MTkwOTI3fQ==

To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/+bug/1479066/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1479067] [NEW] Missing PUT in api service

2015-07-28 Thread Thai Tran
Public bug reported:

We are missing PUT in our api service. Currently keystoneAPI.grantRole
is expecting it but it does not exist!

Links:
https://github.com/openstack/horizon/blob/master/openstack_dashboard/static/openstack-service-api/keystone.service.js#L249

** Affects: horizon
 Importance: Medium
 Assignee: Thai Tran (tqtran)
 Status: In Progress


** Tags: low-hanging-fruit

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1479067

Title:
  Missing PUT in api service

Status in OpenStack Dashboard (Horizon):
  In Progress

Bug description:
  We are missing PUT in our api service. Currently keystoneAPI.grantRole
  is expecting it but it does not exist!

  Links:
  
https://github.com/openstack/horizon/blob/master/openstack_dashboard/static/openstack-service-api/keystone.service.js#L249

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1479067/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1466851] Re: Move to graduated oslo.service

2015-07-28 Thread Doug Hellmann
** Changed in: cinder
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to neutron.
https://bugs.launchpad.net/bugs/1466851

Title:
  Move to graduated oslo.service

Status in Ceilometer:
  Fix Committed
Status in Cinder:
  Fix Released
Status in congress:
  Fix Committed
Status in Designate:
  Fix Committed
Status in Glance:
  Fix Released
Status in heat:
  Fix Released
Status in Ironic:
  Fix Committed
Status in Keystone:
  Fix Committed
Status in Magnum:
  Fix Committed
Status in Manila:
  Fix Committed
Status in murano:
  Fix Committed
Status in neutron:
  Fix Committed
Status in OpenStack Compute (nova):
  Fix Released
Status in os-brick:
  Fix Released
Status in python-muranoclient:
  In Progress
Status in Sahara:
  Fix Released
Status in OpenStack Search (Searchlight):
  Fix Committed
Status in Trove:
  Fix Released

Bug description:
  oslo.service library has graduated so all OpenStack projects should
  port to it instead of using oslo-incubator code.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ceilometer/+bug/1466851/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1475046] Re: Modal service is incorrectly named

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1475046

Title:
  Modal service is incorrectly named

Status in OpenStack Dashboard (Horizon):
  Fix Released

Bug description:
  Currently, the simple modal service is named modal.service.js. This
  is incorrect, the file name should be simple-modal.service.js or
  something similar. Why do we care about a rename? We will likely
  introduce other modal services in the near future (i.e. wizard-
  modal.service). Leaving it as is leaves room for naming collision.

  Link to the modal module:
  
https://github.com/openstack/horizon/tree/1791ae066e1f769f385648282793407cc7749702/horizon/static/framework/widgets/modal

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1475046/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1474498] Re: jasmine tests redirect to login

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

** Changed in: horizon
Milestone: None = liberty-2

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1474498

Title:
  jasmine tests redirect to login

Status in OpenStack Dashboard (Horizon):
  Fix Released

Bug description:
  https://review.openstack.org/#/c/200725 introduced a strange error.

  Run Horizon, then visit http://localhost:8000/jasmine/ServicesTests.

  It breaks the test runner and redirect to the login page. On my
  machine this happens in Chrome, but not Safari.

  Chrome:  43.0.2357.132
  Safari: 8.0.4

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1474498/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1476383] Re: collectstatic and compress are not producing consistent results

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

** Changed in: horizon
Milestone: None = liberty-2

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1476383

Title:
  collectstatic and compress are not producing consistent results

Status in OpenStack Dashboard (Horizon):
  Fix Released

Bug description:
  I have 3 identical machines (host names are different), and I have an
  ansible script to deploy horizon.  As part of the script we run
  collectstatic and compress by hand (offline compression).

  Each machine's static contents looks slightly different.

  This causes horizon to fail when behind a load balancer, specifically
  when round robin or least conn policies are in place.

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1476383/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1477100] Re: Traceback with neutron plugins which do not support the port binding extension

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1477100

Title:
  Traceback with neutron plugins which do not support the port binding
  extension

Status in OpenStack Dashboard (Horizon):
  Fix Released

Bug description:
  If a Neutron plugin does not support  the port binding extension, a::

KeyError: AttributeError('Port' object has no attribute
  'binding__vnic_type',)

  is issued when trying to edit a port:

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1477100/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1474241] Re: Need a way to disable simple tenant usage

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1474241

Title:
  Need a way to disable simple tenant usage

Status in OpenStack Dashboard (Horizon):
  Fix Released

Bug description:
  Frequent calls to Nova's API when displaying the simple tenant usage
  can lead to efficiency problems and even crash on the Nova side,
  especially when there are a lot of deleted nodes in the database. We
  are working on resolving that, but in the mean time, it would be nice
  to have a way of disabling the simple tenant usage stats on the
  Horizon side as a workaround.

  Horizon enabled that option depending on whether it's supported on the
  Nova side. In the 2.0 version of API we can simply disable the support
  for it on the Nova side, but that won't be possible in version 2.1
  anymore, so we need a configuration option on the Horizon side.

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1474241/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1473138] Re: Autodiscovery tests needed

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1473138

Title:
  Autodiscovery tests needed

Status in OpenStack Dashboard (Horizon):
  Fix Released

Bug description:
  See this patch.  https://review.openstack.org/#/c/183364/

  There was discussion in IRC room today asking for more info and saying
  there wasn't documentation.  So we need that.

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1473138/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1472447] Re: Remove old trans filter

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1472447

Title:
  Remove old trans filter

Status in OpenStack Dashboard (Horizon):
  Fix Released

Bug description:
  Once we make the move to angular-gettext, we will not longer need the
  trans filter. Since we are not using it anywhere at the moment, we can
  safely remove it now and ensure that there will be no future conflict.

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1472447/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1476332] Re: update local.conf lbaas config

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1476332

Title:
  update local.conf lbaas config

Status in OpenStack Dashboard (Horizon):
  Fix Released

Bug description:
  lbaas is now a plugin and cannot be enabled via enable_service q-lbaas

  local.conf sample in horizon needs to be updated.

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1476332/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1474177] Re: Wrong to use ./run_test.sh --karma to test javascript code sytle check in doc

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1474177

Title:
  Wrong to use ./run_test.sh --karma to test javascript code sytle
  check in doc

Status in OpenStack Dashboard (Horizon):
  Fix Released

Bug description:
  The chapter The run_test.sh Script in Horizon doc.
  It is worng to  use ./run_test.sh --karma to test code style.
  It should be ./run_test.sh --eslint.

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1474177/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1477145] Re: ./manage.py make_web_conf missing in documentation

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1477145

Title:
  ./manage.py make_web_conf missing in documentation

Status in OpenStack Dashboard (Horizon):
  Fix Released

Bug description:
  ./manage.py make_web_conf is missing in the documentation

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1477145/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1475447] Re: frequent changes in settings.py causes problems for deployers

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

** Changed in: horizon
Milestone: None = liberty-2

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1475447

Title:
  frequent changes in settings.py causes problems for deployers

Status in OpenStack Dashboard (Horizon):
  Fix Released

Bug description:
  there are lots of changes recently, especially around 
  fd.populate_horizon_config() calls

  deployers find the need to make changes to settings.py and
  local_settings.py, because of what can be done where.

  The churn in settings.py should be minimized, especially around
  settings that are required for the application to function correctly.

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1475447/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1477120] Re: _wait_till_element_disappears doesn't work properly

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

** Changed in: horizon
Milestone: None = liberty-2

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1477120

Title:
  _wait_till_element_disappears doesn't work properly

Status in OpenStack Dashboard (Horizon):
  Fix Released

Bug description:
  Integration tests contains these two methods with the same function
  body:

  _wait_till_element_visible
  _wait_till_element_disappears

  This was accidentaly made by:
  https://review.openstack.org/#/c/159869/1

  Usage of _wait_till_element_disappears can cause random failure tests
  on slower environments.

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1477120/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1474618] Re: N1KV network and port creates failing from dashboard

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1474618

Title:
  N1KV network and port creates failing from dashboard

Status in OpenStack Dashboard (Horizon):
  Fix Released

Bug description:
  Due to the change in name of the profile attribute in Neutron
  attribute extensions for networks and ports, network and port
  creations fail from the dashboard since dashboard is still using
  n1kv:profile_id rather than n1kv:profile.

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1474618/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1461154] Re: Cross-Frame Scripting (XFS) Clickjacking vulnerability with legacy browsers

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

** Changed in: horizon
Milestone: None = liberty-2

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1461154

Title:
  Cross-Frame Scripting (XFS) Clickjacking vulnerability with legacy
  browsers

Status in OpenStack Dashboard (Horizon):
  Fix Released
Status in OpenStack Security Advisory:
  Won't Fix

Bug description:
  Vulnerability Details

  A Cross-Frame Scripting (XFS) vulnerability can allow an attacker to load the 
vulnerable application inside an HTML iframe tag
  on a malicious page.

  Impact

  An attacker could use XFS to devise a Clickjacking attack to conduct 
phishing, frame sniffing,
  social engineering or Cross-Site Request Forgery attacks.

  Recommendations

  Set the HTTP X-Frame-Options header to one of the following:
  DENY - deny any frames
  SAMEORIGIN - frames are only allowed from the same origin
  ALLOW-FROM - a list of allowable origin's

  Although many pages within Horizon 1.1 leverage the X-Frame-Options
  header with the recommended SAMEORIGIN policy, some (still popular)
  older browsers don’t support this setting.  Namely, browsers older
  than IE 8 and Firefox 3.6.9 don’t recognize the header and are thus
  vulnerable to an attack known as ClickJacking unless an additional
  mitigating control is present.

  To support legacy browsers, a suggested best practice is to add a
  frame breaking script to the base/global template file. Based off of
  https://www.owasp.org/index.php/Clickjacking_Defense_Cheat_Sheet#Best-
  for-now_Legacy_Browser_Frame_Breaking_Script

  

  One way to defend against clickjacking is to include a frame-breaker
  script in each page that should not be framed. The following
  methodology will prevent a webpage from being framed even in legacy
  browsers, that do not support the X-Frame-Options-Header.

  In the document HEAD element, add the following:

  First apply an ID to the style element itself:

  style id=antiClickjackbody{display:none !important;}/style
  And then delete that style by its ID immediately after in the script:

  script type=text/javascript
     if (self === top) {
     var antiClickjack = document.getElementById(antiClickjack);
     antiClickjack.parentNode.removeChild(antiClickjack);
     } else {
     top.location = self.location;
     }
  /script

  This way, everything can be in the document HEAD and you only need one
  method/taglib in your API.

  

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1461154/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1463838] Re: [data processing] Stack trace for invalid cluster details page

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1463838

Title:
  [data processing] Stack trace for invalid cluster details page

Status in OpenStack Dashboard (Horizon):
  Fix Released

Bug description:
  If you take the URL for a cluster and edit it to reference a cluster
  ID that does not exist, you get a stack trace page rather than a
  regular Horizon page with a red box error message.

  Easiest way to reproduce

  Go to a cluster details page:  (sample url) 
/project/data_processing/clusters/2eeaf268-3bd7-4ffc-b7df-0bc43b9c126e
  Tweak the ID in the url (1 character change should be plenty).
  Note that the page is a stack trace rather than a regular Horizon page with a 
red box error message.

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1463838/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1433123] Re: horizon.conf should used default values

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1433123

Title:
  horizon.conf should used default values

Status in OpenStack Dashboard (Horizon):
  Fix Released

Bug description:
  In integration tests, horizon.conf should follow default values
  defined in config.py.

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1433123/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1427459] Re: Pools are retrieved for monitors detail even there are no pool association

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

** Changed in: horizon
Milestone: None = liberty-2

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1427459

Title:
  Pools are retrieved for monitors detail even there are no pool
  association

Status in OpenStack Dashboard (Horizon):
  Fix Released

Bug description:
  $ neutron lb-healthmonitor-show e1dbcea5-0028-4d78-a378-339b70e0d315
  ++--+
  | Field  | Value|
  ++--+
  | admin_state_up | True |
  | delay  | 5|
  | id | e1dbcea5-0028-4d78-a378-339b70e0d315 |
  | max_retries| 2|
  | pools  |  |
  | tenant_id  | b82b3fa05d8041e183d93aec15527f23 |
  | timeout| 3|
  | type   | PING |
  ++--+

  see detachments.

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1427459/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1458436] Re: wrong url in document of horizon tutorial

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1458436

Title:
  wrong url in document of horizon tutorial

Status in OpenStack Dashboard (Horizon):
  Fix Released

Bug description:
  I follow the steps in tutorial Adding a complex action to a table
  and I get the error when run again horizon:

  Error reversing absolute URL for Panel: mypanel: Reverse for 'index' with 
arguments '()' and keyword arguments '{}' not found. 0 pattern(s) tried: []
  Internal Server Error: /admin/
  Traceback (most recent call last):
    File 
/opt/stack/horizon/.venv/local/lib/python2.7/site-packages/django/core/handlers/base.py,
 line 137, in get_response
  response = response.render()
    File 
/opt/stack/horizon/.venv/local/lib/python2.7/site-packages/django/template/response.py,
 line 103, in render
  self.content = self.rendered_content
    File 
/opt/stack/horizon/.venv/local/lib/python2.7/site-packages/django/template/response.py,
 line 80, in rendered_content
  content = template.render(context)
    File 
/opt/stack/horizon/.venv/local/lib/python2.7/site-packages/django/template/base.py,
 line 148, in render
  return self._render(context)
  ...
     (lookup_view_s, args, kwargs, len(patterns), patterns))
  NoReverseMatch: Reverse for 'index' with arguments '()' and keyword arguments 
'{}' not found. 0 pattern(s) tried: []

  The url pattern is wrong. Change it as :
  urlpatterns = patterns('',
  url(r'^$',
  views.IndexView.as_view(), name='index'),
  url(r'^(?Pinstance_id[^/]+)/create_snapshot/$',
  views.CreateSnapshotView.as_view(),
  name='create_snapshot'),
  )
  is okei.

  Tutorial at:
  http://docs.openstack.org/developer/horizon/topics/table_actions.html

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1458436/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1451681] Re: [launch instance] new launch instance doesn't honor webroot setting

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1451681

Title:
  [launch instance] new launch instance doesn't honor webroot setting

Status in OpenStack Dashboard (Horizon):
  Fix Released

Bug description:
  I moved my dashboard to /dashboard (webroot setting in local_settings)

  With new launch instance: hitting launch instance, screen stays white,
  firebug reports:
  NetworkError: 404 Not Found - http:///static/angular/wizard/wizard.html;

  Note there is /dashboard in front of /static missing.

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1451681/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1465440] Re: Firewall attribute Shared is set to None by default instead of 'False'

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

** Changed in: horizon
Milestone: None = liberty-2

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to neutron.
https://bugs.launchpad.net/bugs/1465440

Title:
  Firewall attribute Shared is set to None by default instead of
  'False'

Status in OpenStack Dashboard (Horizon):
  Fix Released
Status in neutron:
  Won't Fix
Status in python-neutronclient:
  In Progress

Bug description:
  In the current implementation, when a firewall is created, the default
  value of the attribute 'Shared' is set to 'None' instead of 'False'.
  When Firewall attributes are seen from Horizon, the display value is
  shown as 'Maybe' instead of 'No' due to value being 'None'.

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1465440/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1464461] Re: delete action always cause error ( in kilo)

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1464461

Title:
  delete action always cause error ( in kilo)

Status in OpenStack Dashboard (Horizon):
  Fix Released
Status in OpenStack Dashboard (Horizon) kilo series:
  Fix Committed
Status in OpenStack Security Advisory:
  Won't Fix

Bug description:
  When i did any delete actions (delete router, delete network etc...)
  in japanese environment , always get a error page.

  horizon error logs:
  -
  Traceback (most recent call last):
File /usr/lib/python2.7/site-packages/django/core/handlers/base.py, line 
132, in get_response
  response = wrapped_callback(request, *callback_args, **callback_kwargs)
File /usr/lib/python2.7/site-packages/horizon/decorators.py, line 36, in 
dec
  return view_func(request, *args, **kwargs)
File /usr/lib/python2.7/site-packages/horizon/decorators.py, line 52, in 
dec
  return view_func(request, *args, **kwargs)
File /usr/lib/python2.7/site-packages/horizon/decorators.py, line 36, in 
dec
  return view_func(request, *args, **kwargs)
File /usr/lib/python2.7/site-packages/horizon/decorators.py, line 84, in 
dec
  return view_func(request, *args, **kwargs)
File /usr/lib/python2.7/site-packages/django/views/generic/base.py, line 
71, in view
  return self.dispatch(request, *args, **kwargs)
File /usr/lib/python2.7/site-packages/django/views/generic/base.py, line 
89, in dispatch
  return handler(request, *args, **kwargs)
File /usr/lib/python2.7/site-packages/horizon/tables/views.py, line 223, 
in post
  return self.get(request, *args, **kwargs)
File /usr/lib/python2.7/site-packages/horizon/tables/views.py, line 159, 
in get
  handled = self.construct_tables()
File /usr/lib/python2.7/site-packages/horizon/tables/views.py, line 150, 
in construct_tables
  handled = self.handle_table(table)
File /usr/lib/python2.7/site-packages/horizon/tables/views.py, line 125, 
in handle_table
  handled = self._tables[name].maybe_handle()
File /usr/lib/python2.7/site-packages/horizon/tables/base.py, line 1640, 
in maybe_handle
  return self.take_action(action_name, obj_id)
File /usr/lib/python2.7/site-packages/horizon/tables/base.py, line 1482, 
in take_action
  response = action.multiple(self, self.request, obj_ids)
File /usr/lib/python2.7/site-packages/horizon/tables/actions.py, line 
302, in multiple
  return self.handle(data_table, request, object_ids)
File /usr/lib/python2.7/site-packages/horizon/tables/actions.py, line 
828, in handle
  exceptions.handle(request, ignore=ignore)
File /usr/lib/python2.7/site-packages/horizon/exceptions.py, line 364, in 
handle
  six.reraise(exc_type, exc_value, exc_traceback)
File /usr/lib/python2.7/site-packages/horizon/tables/actions.py, line 
817, in handle
  (self._get_action_name(past=True), datum_display))
  UnicodeDecodeError: 'ascii' codec can't decode byte 0xe3 in position 0: 
ordinal not in range(128)
  -

  It occurs in japanese,korean,chinese,french and deutsche, not occurs
  in english and spanish.

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1464461/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1438476] Re: [Launch Instance Fix] Adding unit tests to launch-instance.spec

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1438476

Title:
  [Launch Instance Fix] Adding unit tests to launch-instance.spec

Status in OpenStack Dashboard (Horizon):
  Fix Released

Bug description:
  We need unit test for hz.dashboard.launch-instance in launch-
  instance.spec.

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1438476/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1464354] Re: Angular table paging buttons looks clickable

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1464354

Title:
  Angular table paging buttons looks clickable

Status in OpenStack Dashboard (Horizon):
  Fix Released

Bug description:
  Angular table paging buttons should look like they are clickable. When
  users hover over it, it should show a pointer instead of a caret.

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1464354/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1453245] Re: Keystone REST handles default role incorrectly

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1453245

Title:
  Keystone REST handles default role incorrectly

Status in OpenStack Dashboard (Horizon):
  Fix Released

Bug description:
  The keystone REST currently assigns a role to the user even if the
  role is the default role (_member_). This causes keystone client v2 to
  return an error.

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1453245/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1454283] Re: [launch instance] create volume during launch instance fails

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1454283

Title:
  [launch instance] create volume during launch instance fails

Status in OpenStack Dashboard (Horizon):
  Fix Released

Bug description:
  I tried to launch an instance and to create volume (from an image) to
  boot from:

  
  [Tue May 12 14:23:21.682962 2015] [wsgi:error] [pid 30998] error invoking 
apiclient
  [Tue May 12 14:23:21.683017 2015] [wsgi:error] [pid 30998] Traceback (most 
recent call last):
  [Tue May 12 14:23:21.683026 2015] [wsgi:error] [pid 30998]   File 
/usr/share/op
  
enstack-dashboard/openstack_dashboard/wsgi/../../openstack_dashboard/api/rest/utils.py,
 line 114, in _wrapped
  [Tue May 12 14:23:21.683033 2015] [wsgi:error] [pid 30998] data = 
function(self, request, *args, **kw)
  [Tue May 12 14:23:21.683040 2015] [wsgi:error] [pid 30998]   File 
/usr/share/openstack-dashboard/openstack_dashboard/wsgi/../../openstack_dashboard/api/rest/nova.py,
 line 170, in post
  [Tue May 12 14:23:21.683047 2015] [wsgi:error] [pid 30998] new = 
api.nova.server_create(*args, **kw)
  [Tue May 12 14:23:21.683053 2015] [wsgi:error] [pid 30998]   File 
/usr/share/openstack-dashboard/openstack_dashboard/wsgi/../../openstack_dashboard/api/nova.py,
 line 586, in server_create
  [Tue May 12 14:23:21.683060 2015] [wsgi:error] [pid 30998] meta=meta), 
request)
  [Tue May 12 14:23:21.683066 2015] [wsgi:error] [pid 30998]   File 
/usr/lib/python2.7/site-packages/novaclient/v2/servers.py, line 907, in create
  [Tue May 12 14:23:21.683073 2015] [wsgi:error] [pid 30998] **boot_kwargs)
  [Tue May 12 14:23:21.683078 2015] [wsgi:error] [pid 30998]   File 
/usr/lib/python2.7/site-packages/novaclient/v2/servers.py, line 499, in _boot
  [Tue May 12 14:23:21.683085 2015] [wsgi:error] [pid 30998] bdm_dict = 
{'uuid': image.id, 'source_type': 'image',
  [Tue May 12 14:23:21.683091 2015] [wsgi:error] [pid 30998] AttributeError: 
'unicode' object has no attribute 'id'

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1454283/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1456266] Re: New project in dropdown list

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1456266

Title:
  New project in dropdown list

Status in OpenStack Dashboard (Horizon):
  Fix Released

Bug description:
  There is projects selection dropdown on top of Horizon, right from OpenStack 
logo.
  New project in dropdown list becomes visible only after logout and re-login.

  Steps:
  1) Login to Horizon as admin
  2) Go to Identity - Project
  3) Create new project NEW .
  4) Add admin as _member_ to this project.
  5) Click on project selector dropdown.

  Expected to see NEW project there.
  Actually it`s not present there.

  Now you have to log-out and log-in to see NEW project there

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1456266/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1469589] Re: network_topology page not working

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1469589

Title:
  network_topology page not working

Status in OpenStack Dashboard (Horizon):
  Fix Released

Bug description:
  Latest branch of horizon, when viewing project/network_topology/,
  error occurs:

  2015-06-29 03:44:23.857338 Internal Server Error: /project/network_topology/
  2015-06-29 03:44:23.857371 Traceback (most recent call last):
  2015-06-29 03:44:23.857377   File 
/usr/local/lib/python2.7/dist-packages/django/core/handlers/base.py, line 
112, in get_response
  2015-06-29 03:44:23.857382 response = wrapped_callback(request, 
*callback_args, **callback_kwargs)
  2015-06-29 03:44:23.857387   File 
/data/stack/horizon/openstack_dashboard/wsgi/../../horizon/decorators.py, 
line 36, in dec
  2015-06-29 03:44:23.857393 return view_func(request, *args, **kwargs)
  2015-06-29 03:44:23.857398   File 
/data/stack/horizon/openstack_dashboard/wsgi/../../horizon/decorators.py, 
line 52, in dec
  2015-06-29 03:44:23.857402 return view_func(request, *args, **kwargs)
  2015-06-29 03:44:23.857407   File 
/data/stack/horizon/openstack_dashboard/wsgi/../../horizon/decorators.py, 
line 36, in dec
  2015-06-29 03:44:23.857412 return view_func(request, *args, **kwargs)
  2015-06-29 03:44:23.857416   File 
/data/stack/horizon/openstack_dashboard/wsgi/../../horizon/decorators.py, 
line 84, in dec
  2015-06-29 03:44:23.857421 return view_func(request, *args, **kwargs)
  2015-06-29 03:44:23.857426   File 
/usr/local/lib/python2.7/dist-packages/django/views/generic/base.py, line 69, 
in view
  2015-06-29 03:44:23.857430 return self.dispatch(request, *args, **kwargs)
  2015-06-29 03:44:23.857435   File 
/usr/local/lib/python2.7/dist-packages/django/views/generic/base.py, line 87, 
in dispatch
  2015-06-29 03:44:23.857440 return handler(request, *args, **kwargs)
  2015-06-29 03:44:23.857444   File 
/usr/local/lib/python2.7/dist-packages/django/views/generic/base.py, line 
154, in get
  2015-06-29 03:44:23.857449 context = self.get_context_data(**kwargs)
  2015-06-29 03:44:23.857454   File 
/data/stack/horizon/openstack_dashboard/wsgi/../../openstack_dashboard/dashboards/project/network_topology/views.py,
 line 123, in get_context_data
  2015-06-29 03:44:23.857459 context['instance_quota_exceeded'] = 
self._quota_exceeded('instances')
  2015-06-29 03:44:23.857464   File 
/data/stack/horizon/openstack_dashboard/wsgi/../../openstack_dashboard/dashboards/project/network_topology/views.py,
 line 113, in _quota_exceeded
  2015-06-29 03:44:23.857469 usages = 
quotas.tenant_quota_usages(self.request)
  2015-06-29 03:44:23.857474   File 
/data/stack/horizon/openstack_dashboard/wsgi/../../horizon/utils/memoized.py, 
line 90, in wrapped
  2015-06-29 03:44:23.857478 value = cache[key] = func(*args, **kwargs)
  2015-06-29 03:44:23.857483   File 
/data/stack/horizon/openstack_dashboard/wsgi/../../openstack_dashboard/usage/quotas.py,
 line 362, in tenant_quota_usages
  2015-06-29 03:44:23.857501 _get_tenant_volume_usages(request, usages, 
disabled_quotas, tenant_id)
  2015-06-29 03:44:23.857506   File 
/data/stack/horizon/openstack_dashboard/wsgi/../../openstack_dashboard/usage/quotas.py,
 line 333, in _get_tenant_volume_usages
  2015-06-29 03:44:23.857511 snapshots = 
cinder.volume_snapshot_list(request, opts)
  2015-06-29 03:44:23.857516   File 
/data/stack/horizon/openstack_dashboard/wsgi/../../openstack_dashboard/api/cinder.py,
 line 311, in volume_snapshot_list
  2015-06-29 03:44:23.857520 search_opts=search_opts)]
  2015-06-29 03:44:23.857525   File 
/usr/local/lib/python2.7/dist-packages/cinderclient/v2/volume_snapshots.py, 
line 132, in list
  2015-06-29 03:44:23.857530 snapshots)
  2015-06-29 03:44:23.857534   File 
/usr/local/lib/python2.7/dist-packages/cinderclient/base.py, line 65, in _list
  2015-06-29 03:44:23.857539 resp, body = self.api.client.get(url)
  2015-06-29 03:44:23.857543   File 
/usr/local/lib/python2.7/dist-packages/cinderclient/client.py, line 326, in 
get
  2015-06-29 03:44:23.857548 return self._cs_request(url, 'GET', **kwargs)
  2015-06-29 03:44:23.857553   File 
/usr/local/lib/python2.7/dist-packages/cinderclient/client.py, line 289, in 
_cs_request
  2015-06-29 03:44:23.857557 **kwargs)
  2015-06-29 03:44:23.857562   File 
/usr/local/lib/python2.7/dist-packages/cinderclient/client.py, line 272, in 
request
  2015-06-29 03:44:23.857566 raise exceptions.from_response(resp, body)
  2015-06-29 03:44:23.857571 ClientException: The server has either erred or is 
incapable of performing the requested operation. (HTTP 500) (Request-ID: 
req-9b76a8d0-a4e4-422e-bbf6-07cdfaf1062d)

To manage notifications about this bug go to:

[Yahoo-eng-team] [Bug 1468208] Re: enable user option is not available in create user form

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1468208

Title:
  enable user option is not available in create user form

Status in OpenStack Dashboard (Horizon):
  Fix Released

Bug description:
  In Create User form, no option to enable/disable the user.

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1468208/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1465886] Re: Customisation docs need to be updated for HTML move

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1465886

Title:
  Customisation docs need to be updated for HTML move

Status in OpenStack Dashboard (Horizon):
  Fix Released

Bug description:
  As noted by Travis Tripp in comments on the HTML ngReorg patch
  https://review.openstack.org/#/c/186295/ the customisation doc needs
  to be updated to include the new file paths.

  
  For example, some file locations should be checked in this file:
  
https://github.com/openstack/horizon/blob/master/doc/source/topics/customizing.rst
  

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1465886/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1466744] Re: Integration test test_image_register_unregister failing gate

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1466744

Title:
  Integration test test_image_register_unregister failing gate

Status in OpenStack Dashboard (Horizon):
  Fix Released
Status in OpenStack Dashboard (Horizon) kilo series:
  Fix Committed

Bug description:
  Following test is failing on gate.

  Traceback (most recent call last):
  File 
/opt/stack/new/horizon/openstack_dashboard/test/integration_tests/tests/test_sahara_image_registry.py,
 line 34, in test_image_register_unregister Image was not registered.)
  File 
/opt/stack/new/horizon/.tox/py27integration/local/lib/python2.7/site-packages/unittest2/case.py,
 line 678, in assertTrue
  raise self.failureException(msg)
  AssertionError: False is not true : Image was not registered.

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1466744/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1467610] Re: Searchbar directive should be prefix with hz

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1467610

Title:
  Searchbar directive should be prefix with hz

Status in OpenStack Dashboard (Horizon):
  Fix Released

Bug description:
  We should rename search-bar directive to hz-search-bar for
  consistency.

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1467610/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1467684] Re: Karma configuration should be normalized

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1467684

Title:
  Karma configuration should be normalized

Status in OpenStack Dashboard (Horizon):
  Fix Released

Bug description:
  Currently, Karma config includes many random rules for files to be
  listed, the rules can be normalized so that developer do not to always
  manage the configuration manually when do refactoring.

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1467684/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1466453] Re: [data processing] Proper error messages for invalid details pages

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1466453

Title:
   [data processing] Proper error messages for invalid details pages

Status in OpenStack Dashboard (Horizon):
  Fix Released

Bug description:
  Related bug: https://bugs.launchpad.net/horizon/+bug/1463838

  Taking invalid IDs for details pages URLs causes stack traces instead
  of proper error messages and redirecting to a corresponding table.
  This should be fixed.

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1466453/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1468551] Re: nova server_list called incorrectly in quota.py

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1468551

Title:
  nova server_list called incorrectly in quota.py

Status in OpenStack Dashboard (Horizon):
  Fix Released

Bug description:
  A recent change fixed a role leak in nova
  
https://github.com/openstack/nova/commit/55e63f83a7caec5a8d85b7532c501e1b846295ba
  changed the default policy for compute:get_all_tenants policy rule.
  This exposes that quotas.py is passing incorrect parameters using
  all_tenants=True.

  The result for non-admin users is:

  Forbidden at /project/network_topology/

  Policy doesn't allow compute:get_all_tenants to be performed. (HTTP
  403)

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1468551/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1467810] Re: [RFE] Entering an empty content in Subnet fields does not generate an error

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1467810

Title:
  [RFE] Entering an empty content in Subnet fields does not generate an
  error

Status in OpenStack Dashboard (Horizon):
  Fix Released

Bug description:
  Description of problem:
  Entering an empty content in the fields of 'Create Subnet' window, does not 
generate an error, indicating the necessity to fill the fields 

  Version-Release number of selected component (if applicable):
  python-django-horizon-2015.1.0-10.el7ost.noarch

  How reproducible:
  100%

  Steps to Reproduce:
  1. Create a Subnet without empty content in the fields
  2. Click 'NEXT' 

  
  Actual results:
  Nothing happens 

  Expected results:
  The empty fields should be highlighted in red and an error should be 
appeared, indicating the necessity to fill the fields

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1467810/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1468547] Re: Plugin test should check js injections

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1468547

Title:
  Plugin test should check js injections

Status in OpenStack Dashboard (Horizon):
  Fix Released

Bug description:
  Currently, we have tests for plugin but they are not comprehensive
  enough. Considering that we are adding more logic to javascript, we
  need to ensure that they are properly injected in these plugin.

  
https://github.com/openstack/horizon/blob/master/openstack_dashboard/test/test_plugins/panel_tests.py#L44
  
https://github.com/openstack/horizon/blob/master/openstack_dashboard/test/test_plugins/panel_config/_10_admin_add_panel.py#L16

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1468547/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1466828] Re: remove current QoS spec from edit volume type

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1466828

Title:
  remove current QoS spec from edit volume type

Status in OpenStack Dashboard (Horizon):
  Fix Released

Bug description:
  In Volume type, QoS Spec associate form listing all the QoS Specs.
  If we selected the current one again, it is throwing form error
  instead of this, we can remove the current one from the list.

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1466828/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1463247] Re: discription in the user table is missing

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1463247

Title:
  discription in the user table is missing

Status in OpenStack Dashboard (Horizon):
  Fix Released

Bug description:
  In the user table , description column is missing when keystone V3 is
  used.

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1463247/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1463181] Re: ID panels with long role names / role lists display poorly

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1463181

Title:
  ID panels with long role names / role lists display poorly

Status in OpenStack Dashboard (Horizon):
  Fix Released

Bug description:
  See this screen shot:

  http://pasteboard.co/14TpE09S.png

  The longer role names or having multiple roles is not working well
  beyond the most basic _member_ admin type roles.

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1463181/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1467787] Re: Validate create image url field

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1467787

Title:
  Validate create image url field

Status in OpenStack Dashboard (Horizon):
  Fix Released

Bug description:
  use URLField instead of CharField for image_url

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1467787/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1415301] Re: some cancel button with underline

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

** Changed in: horizon
Milestone: None = liberty-2

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1415301

Title:
  some cancel button with underline

Status in OpenStack Dashboard (Horizon):
  Fix Released

Bug description:
  Some cancel buttons have underline when hover, but some do not when
  hover, so it should make consistent.

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1415301/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1435869] Re: [Launch Instance Fix] Establish Baseline Unit Tests

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1435869

Title:
  [Launch Instance Fix] Establish Baseline Unit Tests

Status in OpenStack Dashboard (Horizon):
  Fix Released

Bug description:
  The Angular work done for Launch Instance should have a baseline set
  of unit tests for each of the steps and the infrastructure supporting
  them (model, wizard implementation, etc.).

  These tests should ensure that each component has basic tests in their
  associated .spec.js files.

  The expectations for such components would be:

  Controllers:
   - test for name
   - test injected elements (maybe inherent in other tests)
   - test each exposed logic function (whether on scope or on controller object)

  Filters:
   - should be tested for expected object
   - should be tested for lack of expected object (undefined, null, etc. 
preferably using angular's presence functions)

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1435869/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1373310] Re: Angular JS integration in Openstack Horizon dashboard should be documented

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1373310

Title:
  Angular JS integration in Openstack Horizon dashboard should be
  documented

Status in OpenStack Dashboard (Horizon):
  Fix Released

Bug description:
  Angular JS integeration in Openstack horizon dashboard should be
  documentation.

  As of now most of the UI developers not able to find appropriate
  documentation or approach on Horizon and Angular JS framework.

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1373310/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1474782] Re: cancel buttons look is different from others in migrate host

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1474782

Title:
  cancel buttons look is different from others in migrate host

Status in OpenStack Dashboard (Horizon):
  Fix Released

Bug description:
  in migrate host form the cancel button doesn't look uniform.

  screen shot added

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1474782/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1469147] Re: Can not delete container with XSS-injected name

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

** Changed in: horizon
Milestone: None = liberty-2

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1469147

Title:
  Can not delete container with XSS-injected name

Status in OpenStack Dashboard (Horizon):
  Fix Released

Bug description:
  Steps:
  1. Login to Horizon Dashboard as admin user.
  2. Navigate to Project - Object Store - Containers page.
  3. Create Containers with names:
  3.1 '';!--XSS={()}
  3.2 IMG SRC=javascript:alert('XSS');
  3.3 IMG SRC=javascript:alert('XSS')

  4. Try to delete these containers  ---  they can't be removed

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1469147/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1473176] Re: Dashboard karma is missing framework files

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1473176

Title:
  Dashboard karma is missing framework files

Status in OpenStack Dashboard (Horizon):
  Fix Released

Bug description:
  We currently have two Karma files: one for horizon and one for
  dashboard. Because dashboard code relies horizon, the karma conf in
  dashboard should include the needed files from framework.

  
  Links:
  
https://github.com/openstack/horizon/blob/master/openstack_dashboard/karma.conf.js

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1473176/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1473073] Re: Example local.conf doesn't use newer plugin system

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

** Changed in: horizon
Milestone: None = liberty-2

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1473073

Title:
  Example local.conf doesn't use newer plugin system

Status in OpenStack Dashboard (Horizon):
  Fix Released

Bug description:
  The local_conf.rst uses an old configuration:

  # enable Sahara (data-processing) Service
  enable_service sahara

  # enable Trove (database) Service
  enable_service trove tr-api tr-tmgr tr-cond

  
  This should now use the enable_plugin functions.

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1473073/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1472385] Re: Duplicate keywords for translation

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1472385

Title:
  Duplicate keywords for translation

Status in OpenStack Dashboard (Horizon):
  Fix Released

Bug description:
  There is a duplicate keyword in the list of keywords specified for 
translation. This is incorrect and should be ugettext_noop.
  https://github.com/openstack/horizon/blob/master/run_tests.sh#L428

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1472385/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1472828] Re: Remove hz.dashboard module from enabled

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1472828

Title:
  Remove hz.dashboard module from enabled

Status in OpenStack Dashboard (Horizon):
  Fix Released

Bug description:
  Since hz.dashboard is now included at the app level, we no longer need
  to include them at the dashboard level.
  
https://github.com/openstack/horizon/blob/master/openstack_dashboard/static/app/app.module.js#L34

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1472828/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1470594] Re: Strange CSS None import

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1470594

Title:
  Strange CSS None import

Status in OpenStack Dashboard (Horizon):
  Fix Released

Bug description:
  Here is the stack trace from chrome:

  GET http://localhost:8001/static/dashboard/css/None 404 (NOT FOUND)
  curCSS @ jquery.js:7093
  jQuery.extend.cssHooks.opacity.get @ jquery.js:6952
  jQuery.extend.css @ jquery.js:7059
  Tween.propHooks._default.get @ jquery.js:9253
  Tween.cur @ jquery.js:9209
  Tween.init @ jquery.js:9200
  Tween @ jquery.js:9189
  deferred.promise.createTween @ jquery.js:8936
  tweeners.* @ jquery.js:8821
  createTween @ jquery.js:8884
  defaultPrefilter @ jquery.js:9175
  Animation @ jquery.js:8969
  jQuery.fn.extend.animate.doAnimation @ jquery.js:9305
  jQuery.extend.dequeue @ jquery.js:3948
  (anonymous function) @ jquery.js:3991
  jQuery.extend.each @ jquery.js:657
  jQuery.fn.jQuery.each @ jquery.js:266
  jQuery.fn.extend.queue @ jquery.js:3984
  jQuery.fn.extend.animate @ jquery.js:9316
  jQuery.each.jQuery.fn.(anonymous function) @ jquery.js:9442
  (anonymous function) @ horizon.tables_inline_edit.js:243
  jQuery.each.jQuery.event.special.(anonymous function).handle @ jquery.js:5460
  jQuery.event.dispatch @ jquery.js:5095
  jQuery.event.add.elemData.handle @ jquery.js:4766

  Look like its pointing to this:
  
https://github.com/openstack/horizon/blob/master/horizon/static/horizon/js/horizon.tables_inline_edit.js#L243

  To reproduce, navigate to any tables that uses inline editing.
  After page load, just mouse over the table and you will see it.

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1470594/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1469293] Re: Turning off offline compression for integration test

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1469293

Title:
  Turning off offline compression for integration test

Status in OpenStack Dashboard (Horizon):
  Fix Released

Bug description:
  We have COMPRESS_OFFLINE disabled by default in our tests in horizon, we need 
to do the same in dashboard.
  Here is a very long explanation of why this needs to happen.

  What we know about offline compression:
  1. You need to manually run manage.py compress to generate the offline 
compressed files
  2. The offline compressed files are stored in /static/dashboards/
  3. There is a manifest file that maps a key to a file
  4. The key is generated via some hashing mechanism based on content
  5. When page request happens, the compressor looks up the manifest and hands 
over the compressed file
  6. If you make changes inside of the {% compress %} tag, you NEED to manually 
rerun the compress cmd in #1

  In summary, if you enable COMPRESS_OFFLINE, you need to manually generate the 
compressed files.
  If you made changes to your compress tag, you need to rerun the compress 
command.

  How is this related to integration test?
  a. Integration tests will break if you made changes to the {% compress %} tag 
and did not rerun the compress command
  b. The error is obscure and goes something like OfflineGenerationError and 
complains about not finding a key (#3)

  To avoid future problems, integration tests should not have COMPRESS_OFFLINE 
enabled.
  This is a feature for deployers to use for a STABLE environment.

  Links:
  https://github.com/openstack/horizon/blob/master/horizon/test/settings.py#L143
  
https://github.com/openstack/horizon/blob/master/openstack_dashboard/test/settings.py

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1469293/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1473303] Re: horizon gate failing due to latest release of mock

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1473303

Title:
  horizon gate failing due to latest release of mock

Status in OpenStack Dashboard (Horizon):
  Fix Released
Status in OpenStack Dashboard (Horizon) kilo series:
  Fix Committed

Bug description:

  the latest release of mock exposed some bad test in horizon and the
  gate jobs are now failing

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1473303/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1469651] Re: Boolean values displayed without 'yesno' filter in user and project detail page

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1469651

Title:
  Boolean values displayed without 'yesno' filter in user and project
  detail page

Status in OpenStack Dashboard (Horizon):
  Fix Released

Bug description:
  In Project and User detail page, enabled field is boolean.
  This is displayed as it is (True and False)
  It should displayed as Yes and No

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1469651/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1471277] Re: floating ip association fails if a port is attached to a network with no subnet

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

** Changed in: horizon
Milestone: None = liberty-2

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1471277

Title:
  floating ip association fails if a port is attached to a network with
  no subnet

Status in OpenStack Dashboard (Horizon):
  Fix Released

Bug description:
  If we have:
  OPENSTACK_NEUTRON_NETWORK['enable_fip_topology_check'] = False

  In the meanwhile a user has issued the following neutron commands:
  neutron net-create
  neutron port-create network-id_created just above
  ... not finished yet

  In the same meanwhile a user wants to associate a FIP.

  We get the following traceback:
  http://paste.openstack.org/show/339014/

  This is because the list of fixed IPs is empty for this port.

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1471277/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1468706] Re: Loading block wouldn't disappear after using compound key to click link

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1468706

Title:
  Loading block wouldn't disappear after using compound key to click
  link

Status in OpenStack Dashboard (Horizon):
  Fix Released

Bug description:
  When user want to using compound key to open link in new tab such as open 
instances page in new tab. 
  He will hold control key and click link by left button of mouse. Then the 
page will be opened in new tab. 
  But original page will occur loading block. And it will never disappear. 
  This situation will happened either using middle button of mouse to click 
link or hold some other compound key (such as esc key or shift key) and click 
link. 
  And not all of link will occur this bugs. It was exist at those links which 
are located at left navigation block.

  When user click link, maybe UI will assume browser to send request and 
receive the response.
  But browser will not send any request in this page. Therefore the loading 
block will stay there forever.

  This bug was exist in Chrome, Safari and Firefox.

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1468706/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1470821] Re: volume detail link pointing to project page from admin instance detail page

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1470821

Title:
  volume detail link pointing to project page from admin instance detail
  page

Status in OpenStack Dashboard (Horizon):
  Fix Released

Bug description:
  From admins instance detail the link for the attached volume is
  pointing to the volume detail in project panel instead of admin panel

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1470821/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1467935] Re: widget attributes changed

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1467935

Title:
  widget attributes changed

Status in OpenStack Dashboard (Horizon):
  Fix Released

Bug description:
   In Django 1.8, widget attribute data-date-picker=True will be
  rendered as 'data-date-picker'. To preserve current behavior, use the
  string 'True' instead of the boolean value.

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1467935/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1470982] Re: Corrections to WEBROOT docs

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1470982

Title:
  Corrections to WEBROOT docs

Status in OpenStack Dashboard (Horizon):
  Fix Released

Bug description:
  There are a couple of minor typos and oversights in the WEBROOT
  documentation in the Settings page.

  1) Misspelling of 'dashboard'
  2) Exclusion of WSGIScriptAlias instruction for Apache
  3) Inclusion of reminder to use collectstatic/compress after changing 
_variables.css

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1470982/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1468300] Re: changing user's email from user list deletes user password

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1468300

Title:
  changing user's email from user list deletes user password

Status in OpenStack Dashboard (Horizon):
  Fix Released
Status in OpenStack Dashboard (Horizon) kilo series:
  Fix Committed

Bug description:
  OS: Ubuntu Server 14.04.2 LTS
  Openstack: Kilo
  Openstack-dashboard package: 1:2015.1.0-0ubuntu1~cloud0

  robcresswell: Seems to also occur on master as of 2015-06-24

  While logged as an admin user in Dashboard (horizon), if you try to change an 
email address from another user directly on users list , it will change the 
email address properly but will turn to NULL that user's password.
  This behaviour doesn't seem to have effect while changing email address on 
Edit form.

  Before changing email address:
   select * from user where name=demo;
  
+--+--+---+-+-+---+--+
  | id   | name | extra | password  

  | enabled | domain_id | default_project_id   |
  
+--+--+---+-+-+---+--+
  | 651261afa8654ed1a6431ed2b7405bd3 | demo | {email: } | 
$6$rounds=4$mXk6yBRZo.00pnoU$rRfNvGXVW15gHq8k6p9caT9bDQwIaNgpN29dLE0aR8wSisIN56xvbdbiQRGs/2S6qmIrrKaTUAm3uso8jMIr61
 |   1 | default   | 7dd667e26b2e4169bb74cf3306eac352 |
  
+--+--+---+-+-+---+--+

  After:
   select * from user where name=demo;
  
+--+--++--+-+---+--+
  | id   | name | extra 
 | password | enabled | domain_id | default_project_id   |
  
+--+--++--+-+---+--+
  | 651261afa8654ed1a6431ed2b7405bd3 | demo | {email: 
notrealin...@gti.uvigo.es} | NULL |   1 | default   | 
7dd667e26b2e4169bb74cf3306eac352 |
  
+--+--++--+-+---+--+

  Due to security: No pass equals can't log in through dashboard also I
  tried logging in using a CLI without password and it doesn't seem to
  work. So, I guess it's not a security vulnerability.

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1468300/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1470826] Re: If action during handling BatchAction failed, then got Traceback in logs

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1470826

Title:
  If action during handling BatchAction failed, then got Traceback in
  logs

Status in OpenStack Dashboard (Horizon):
  Fix Released

Bug description:
  If during operation some action (for example, delete action) became
  failed, then got following traceback in logs:

  Traceback (most recent call last):
File 
/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/logging/__init__.py,
 line 851, in emit
  msg = self.format(record)
File 
/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/logging/__init__.py,
 line 724, in format
  return fmt.format(record)
File 
/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/logging/__init__.py,
 line 464, in format
  record.message = record.getMessage()
File 
/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/logging/__init__.py,
 line 328, in getMessage
  msg = msg % self.args
  TypeError: not all arguments converted during string formatting

  It happens because of following line:
  
https://github.com/openstack/horizon/blob/master/horizon/tables/actions.py#L823

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1470826/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1472098] Re: Horizon Application level module structure is unclear

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1472098

Title:
  Horizon Application level module structure is unclear

Status in OpenStack Dashboard (Horizon):
  Fix Released

Bug description:
  Horizon client side is architected based on Angular modules, providers
  etc. The application level module is defined based on a list of other
  modules. What modules should be listed there and why are not very
  clear.

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1472098/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1381413] Re: Switch Region dropdown doesn't work

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1381413

Title:
  Switch Region dropdown doesn't work

Status in django-openstack-auth:
  Fix Released
Status in OpenStack Dashboard (Horizon):
  Fix Released

Bug description:
  In case Horizon was set up to work with multiple regions (by editing
  AVAILABLE_REGIONS in settings.py), region selector drop-down appears
  in top right corner. But it doesn't work now.

  Suppose I login into the Region1, then if I try to switch to Region2,
  it redirects me to the login view of django-openstack-auth
  
https://github.com/openstack/horizon/blob/2014.2.rc1/horizon/templates/horizon/common/_region_selector.html#L11

  There I am being immediately redirected to the
  settings.LOGIN_REDIRECT_URL because I am already authenticated at
  Region1, so I cannot view Region2 resources if I switch to it via top
  right dropdown. Selecting region at login page works though.

To manage notifications about this bug go to:
https://bugs.launchpad.net/django-openstack-auth/+bug/1381413/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1352256] Re: Uploading a new object fails with Ceph as object storage backend using RadosGW

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1352256

Title:
  Uploading a new object fails with Ceph as object storage backend using
  RadosGW

Status in OpenStack Dashboard (Horizon):
  Fix Released

Bug description:
  While uploading a new Object using Horizon, with Ceph as object
  storage backend, it fails with error mesage Error: Unable to upload
  object

  Ceph Release : Firefly

  Error in horizon_error.log:

  
  [Wed Jul 23 09:04:46.840751 2014] [:error] [pid 30045:tid 140685813683968] 
INFO:urllib3.connectionpool:Starting new HTTP connection (1): 
firefly-master.ashish.com
  [Wed Jul 23 09:04:46.842984 2014] [:error] [pid 30045:tid 140685813683968] 
WARNING:urllib3.connectionpool:HttpConnectionPool is full, discarding 
connection: firefly-master.ashish.com
  [Wed Jul 23 09:04:46.843118 2014] [:error] [pid 30045:tid 140685813683968] 
REQ: curl -i http://firefly-master.ashish.com/swift/v1/new-cont-dash/test -X 
PUT -H X-Auth-Token: 91fc8466ce17e0d22af86de9b3343b2d
  [Wed Jul 23 09:04:46.843227 2014] [:error] [pid 30045:tid 140685813683968] 
RESP STATUS: 411 Length Required
  [Wed Jul 23 09:04:46.843584 2014] [:error] [pid 30045:tid 140685813683968] 
RESP HEADERS: [('date', 'Wed, 23 Jul 2014 09:04:46 GMT'), ('content-length', 
'238'), ('content-type', 'text/html; charset=iso-8859-1'), ('connection', 
'close'), ('server', 'Apache/2.4.7 (Ubuntu)')]
  [Wed Jul 23 09:04:46.843783 2014] [:error] [pid 30045:tid 140685813683968] 
RESP BODY: !DOCTYPE HTML PUBLIC -//IETF//DTD HTML 2.0//EN
  [Wed Jul 23 09:04:46.843907 2014] [:error] [pid 30045:tid 140685813683968] 
htmlhead
  [Wed Jul 23 09:04:46.843930 2014] [:error] [pid 30045:tid 140685813683968] 
title411 Length Required/title
  [Wed Jul 23 09:04:46.843937 2014] [:error] [pid 30045:tid 140685813683968] 
/headbody
  [Wed Jul 23 09:04:46.843944 2014] [:error] [pid 30045:tid 140685813683968] 
h1Length Required/h1
  [Wed Jul 23 09:04:46.843951 2014] [:error] [pid 30045:tid 140685813683968] 
pA request of the requested method PUT requires a valid Content-length.br /
  [Wed Jul 23 09:04:46.843957 2014] [:error] [pid 30045:tid 140685813683968] 
/p
  [Wed Jul 23 09:04:46.843963 2014] [:error] [pid 30045:tid 140685813683968] 
/body/html
  [Wed Jul 23 09:04:46.843969 2014] [:error] [pid 30045:tid 140685813683968]
  [Wed Jul 23 09:04:46.844530 2014] [:error] [pid 30045:tid 140685813683968] 
Object PUT failed: http://firefly-master.ashish.com/swift/v1/new-cont-dash/test 
411 Length Required  [first 60 chars of response] !DOCTYPE HTML PUBLIC 
-//IETF//DTD HTML 2.0//EN
  [Wed Jul 23 09:04:46.844555 2014] [:error] [pid 30045:tid 140685813683968] 
htmlhe
  [Wed Jul 23 09:04:46.844567 2014] [:error] [pid 30045:tid 140685813683968] 
Traceback (most recent call last):
  [Wed Jul 23 09:04:46.844573 2014] [:error] [pid 30045:tid 140685813683968]   
File /opt/stack/python-swiftclient/swiftclient/client.py, line 1208, in _retry
  [Wed Jul 23 09:04:46.844582 2014] [:error] [pid 30045:tid 140685813683968]
 rv = func(self.url, self.token, *args, **kwargs)
  [Wed Jul 23 09:04:46.844588 2014] [:error] [pid 30045:tid 140685813683968]   
File /opt/stack/python-swiftclient/swiftclient/client.py, line 981, in 
put_object
  [Wed Jul 23 09:04:46.844594 2014] [:error] [pid 30045:tid 140685813683968]
 http_response_content=body)
  [Wed Jul 23 09:04:46.844601 2014] [:error] [pid 30045:tid 140685813683968] 
ClientException: Object PUT failed: 
http://firefly-master.ashish.com/swift/v1/new-cont-dash/test 411 Length 
Required  [first 60 chars of response] !DOCTYPE HTML PUBLIC -//IETF//DTD HTML 
2.0//EN
  [Wed Jul 23 09:04:46.844607 2014] [:error] [pid 30045:tid 140685813683968] 
htmlhe
  [Wed Jul 23 09:04:46.844879 2014] [:error] [pid 30045:tid 140685813683968] 
Recoverable error: Object PUT failed: 
http://firefly-master.ashish.com/swift/v1/new-cont-dash/test 411 Length 
Required  [first 60 chars of response] !DOCTYPE HTML PUBLIC -//IETF//DTD HTML 
2.0//EN
  [Wed Jul 23 09:04:46.844900 2014] [:error] [pid 30045:tid 140685813683968] 
htmlhe
  [Wed Jul 23 09:04:46.854643 2014] [:error] [pid 30045:tid 140685813683968] 
INFO:urllib3.connectionpool:Starting new HTTP connection (1): 10.0.1.60
  [Wed Jul 23 09:04:46.855247 2014] [:error] [pid 30045:tid 140685813683968] 
DEBUG:urllib3.connectionpool:Setting read timeout to None
  [Wed Jul 23 09:04:46.888503 2014] [:error] [pid 30045:tid 140685813683968] 
DEBUG:urllib3.connectionpool:POST /v2.0/tokens HTTP/1.1 200 1358
  [Wed Jul 23 09:04:46.892722 2014] [:error] [pid 30045:tid 140685813683968] 
INFO:urllib3.connectionpool:Starting new HTTP connection (1): 10.0.1.60
  [Wed Jul 23 09:04:46.894144 2014] [:error] [pid 30045:tid 140685813683968] 
DEBUG:urllib3.connectionpool:Setting read timeout to None
  [Wed Jul 23 09:04:46.910724 2014] [:error] 

[Yahoo-eng-team] [Bug 1350088] Re: heat output section formatted poorly

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1350088

Title:
  heat output section formatted poorly

Status in OpenStack Dashboard (Horizon):
  Fix Released

Bug description:
  If a heat resource generates terminal output, it would be nice if the
  UI showed it in a similar way to how console logs are shown in the
  instance detail section. Right now the terminal output is in a dd
  tag, which looks kind of weird. I specifically noticed this as a
  problem when using SoftwareDeploy resources as they produce terminal
  output.

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1350088/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1400818] Re: Create Pseudo-folder - add / at the end of folder name, creates a sub folder with the same name.

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

** Changed in: horizon
Milestone: None = liberty-2

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1400818

Title:
  Create Pseudo-folder - add / at the end of folder name, creates a
  sub folder with the same name.

Status in OpenStack Dashboard (Horizon):
  Fix Released

Bug description:
  1. Login to Devstack as admin
  2. Create the container C_1
  3. Inside C_1 container create the pseudo folder abc/   (with the / at 
the end of the folder name)

  Observe that child folder with the same name as parent folder created
  (abc). when try to delete the child folder error message is displayed.

  When nothing has specified after “/”, creating child folder with the
  same name as parent is not expected. In addition, both parent and
  child folders are refused to delete.

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1400818/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1405638] Re: Opening link in a new tab with Mouse Wheel is broken in Dashboard

2015-07-28 Thread Doug Hellmann
** Changed in: horizon
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1405638

Title:
  Opening link in a new tab with Mouse Wheel is broken in Dashboard

Status in OpenStack Dashboard (Horizon):
  Fix Released

Bug description:
  When I try to open any link in a new tab via clicking it with Mouse
  Wheel, never-ending 'Loading' spinner appears on the page (still the
  link opens fine in a new tab). If I open this link in a new tab with
  the command from context menu, everything works okay. This feature has
  worked in Juno, and is broken only in Kilo.

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1405638/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1476423] Re: extra-route not available from horizon dashboard routers

2015-07-28 Thread Janet Yu
*** This bug is a duplicate of bug 1396616 ***
https://bugs.launchpad.net/bugs/1396616

** This bug has been marked a duplicate of bug 1396616
   Router extra routes can't be access from horizon

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1476423

Title:
  extra-route not available from horizon dashboard routers

Status in OpenStack Dashboard (Horizon):
  New

Bug description:
  neutron ext-list
  show extra route (Neutron Extra Route) is configured.

  But the Horizon dashboard network  Routers  router instance
  present no elements to add/del extra-route from a router.

To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1476423/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1479105] [NEW] Possible local variable 'port_info' referenced before assignment in OVS agent

2015-07-28 Thread Assaf Muller
Public bug reported:

I got a UnboundLocalError: local variable 'port_info' referenced before
assignment exception while running local, yet unmerged fullstack tests.
Looking at the code you can get that exception in one of two scenarios:

1) _agent_has_updates is False during the first iteration, I'm not sure if this 
is possible.
2) Or, in my case while executing the first '*port_info* = 
self.scan_ports(reg_ports, updated_ports_copy)', self.scan_ports raised an 
exception which is caught in the main RPC loop and then the very end of the RPC 
loop is reached, at which point 'port_stats = self.get_port_stats(*port_info*, 
ancillary_port_info)' raises an UnboundLocalError exception because port_info 
was never defined.

This is a regression that results from
https://review.openstack.org/#/c/199164/.

** Affects: neutron
 Importance: Low
 Status: New

** Description changed:

  I got a UnboundLocalError: local variable 'port_info' referenced before
  assignment exception while running local, yet unmerged fullstack tests.
  Looking at the code you can get that exception in one of two scenarios:
  
  1) _agent_has_updates is False during the first iteration, I'm not sure if 
this is possible.
  2) Or, in my case while executing the first '*port_info* = 
self.scan_ports(reg_ports, updated_ports_copy)', self.scan_ports raised an 
exception which is caught in the main RPC loop and then the very end of the RPC 
loop is reached, at which point 'port_stats = self.get_port_stats(*port_info*, 
ancillary_port_info)' raises an UnboundLocalError exception because port_info 
was never defined.
+ 
+ This is a regression that results from
+ https://review.openstack.org/#/c/199164/.

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to neutron.
https://bugs.launchpad.net/bugs/1479105

Title:
  Possible local variable 'port_info' referenced before assignment in
  OVS agent

Status in neutron:
  New

Bug description:
  I got a UnboundLocalError: local variable 'port_info' referenced
  before assignment exception while running local, yet unmerged
  fullstack tests. Looking at the code you can get that exception in one
  of two scenarios:

  1) _agent_has_updates is False during the first iteration, I'm not sure if 
this is possible.
  2) Or, in my case while executing the first '*port_info* = 
self.scan_ports(reg_ports, updated_ports_copy)', self.scan_ports raised an 
exception which is caught in the main RPC loop and then the very end of the RPC 
loop is reached, at which point 'port_stats = self.get_port_stats(*port_info*, 
ancillary_port_info)' raises an UnboundLocalError exception because port_info 
was never defined.

  This is a regression that results from
  https://review.openstack.org/#/c/199164/.

To manage notifications about this bug go to:
https://bugs.launchpad.net/neutron/+bug/1479105/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1479116] [NEW] Outdated documentation in Image Cache Middleware

2015-07-28 Thread Marcos Simental
Public bug reported:

Documentation in Enabling the Image Cache Management Middleware[1] is out of 
date, example is
[paste_deploy] flavor = cachemanage
where cachemanage should be keystone+cachemanagement as specified in [2] 
(Answer #9) and proper bug report [3] which was merged in milestone: folsom-1 → 
2012.2.

[1]-https://github.com/openstack/glance/blob/master/doc/source/configuring.rst#enabling-the-image-cache-management-middleware
[2]-https://answers.launchpad.net/glance/+question/191811
[3]-https://review.openstack.org/#/c/6763/

** Affects: glance
 Importance: Undecided
 Status: New


** Tags: documentation glance

** Description changed:

- Documentation in Enabling the Image Cache Management Middleware is out of 
date, example is
+ Documentation in Enabling the Image Cache Management Middleware[1] is out 
of date, example is
  [paste_deploy] flavor = cachemanage
  where cachemanage should be keystone+cachemanagement as specified in [2] 
(Answer #9) and proper bug report [3] which was merged in milestone: folsom-1 → 
2012.2.
  
  
[1]-https://github.com/openstack/glance/blob/master/doc/source/configuring.rst#enabling-the-image-cache-management-middleware
  [2]-https://answers.launchpad.net/glance/+question/191811
  [3]-https://review.openstack.org/#/c/6763/

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to Glance.
https://bugs.launchpad.net/bugs/1479116

Title:
  Outdated documentation in Image Cache Middleware

Status in Glance:
  New

Bug description:
  Documentation in Enabling the Image Cache Management Middleware[1] is out 
of date, example is
  [paste_deploy] flavor = cachemanage
  where cachemanage should be keystone+cachemanagement as specified in [2] 
(Answer #9) and proper bug report [3] which was merged in milestone: folsom-1 → 
2012.2.

  
[1]-https://github.com/openstack/glance/blob/master/doc/source/configuring.rst#enabling-the-image-cache-management-middleware
  [2]-https://answers.launchpad.net/glance/+question/191811
  [3]-https://review.openstack.org/#/c/6763/

To manage notifications about this bug go to:
https://bugs.launchpad.net/glance/+bug/1479116/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


[Yahoo-eng-team] [Bug 1479124] [NEW] Scheduler doesn't respect tracks_instance_changes in all cases

2015-07-28 Thread Jim Rollenhagen
Public bug reported:

This commit introduces instance tracking in the scheduler, with an
option to disable it for performance.
https://github.com/openstack/nova/commit/82cc056fb7e1b081a733797ed27550343cbaf44c

However, _add_instance_info is not guarded by the config option, but
causes just as much performance havoc as the initial load.
https://github.com/openstack/nova/commit/82cc056fb7e1b081a733797ed27550343cbaf44c
#diff-978b9f8734365934eaf8fbb01f11a7d7R554

This should be guarded by the config.

** Affects: nova
 Importance: Undecided
 Assignee: Jim Rollenhagen (jim-rollenhagen)
 Status: In Progress

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Compute (nova).
https://bugs.launchpad.net/bugs/1479124

Title:
  Scheduler doesn't respect tracks_instance_changes in all cases

Status in OpenStack Compute (nova):
  In Progress

Bug description:
  This commit introduces instance tracking in the scheduler, with an
  option to disable it for performance.
  
https://github.com/openstack/nova/commit/82cc056fb7e1b081a733797ed27550343cbaf44c

  However, _add_instance_info is not guarded by the config option, but
  causes just as much performance havoc as the initial load.
  
https://github.com/openstack/nova/commit/82cc056fb7e1b081a733797ed27550343cbaf44c
  #diff-978b9f8734365934eaf8fbb01f11a7d7R554

  This should be guarded by the config.

To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/+bug/1479124/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp


<    1   2