Activity log for bug #1778771

Date Who What changed Old value New value Message
2018-06-26 17:55:01 Dmitriy Rabotyagov bug added bug
2018-06-29 04:19:34 Trent Lloyd horizon: status New Confirmed
2018-06-29 04:42:55 Trent Lloyd tags low-hanging-fruit
2018-06-29 04:43:12 Trent Lloyd bug added subscriber Trent Lloyd
2018-07-02 03:09:51 Nobuto Murata bug added subscriber Nobuto Murata
2018-08-07 08:45:25 Dominique Poulain bug added subscriber Dominique Poulain
2018-08-21 13:02:06 Seyeong Kim bug task added charm-openstack-dashboard
2018-08-22 01:41:38 Seyeong Kim tags low-hanging-fruit low-hanging-fruit sts
2018-08-22 01:41:45 Seyeong Kim charm-openstack-dashboard: assignee Seyeong Kim (xtrusia)
2018-08-22 01:42:15 Seyeong Kim charm-openstack-dashboard: status New In Progress
2018-09-18 09:27:15 Edward Hope-Morley charm-openstack-dashboard: milestone 18.11
2018-09-26 14:38:28 Edward Hope-Morley horizon: assignee Edward Hope-Morley (hopem)
2018-09-26 14:38:34 Edward Hope-Morley horizon: status Confirmed In Progress
2018-09-27 13:33:35 OpenStack Infra horizon: status In Progress Fix Released
2018-10-01 09:21:50 Edward Hope-Morley bug task added cloud-archive
2018-10-01 09:21:59 Edward Hope-Morley nominated for series cloud-archive/rocky
2018-10-01 09:21:59 Edward Hope-Morley nominated for series cloud-archive/queens
2018-10-01 13:36:57 Corey Bryant bug task added cloud-archive/queens
2018-10-01 13:37:06 Corey Bryant bug task added cloud-archive/rocky
2018-10-01 14:00:32 Corey Bryant cloud-archive/queens: status New Triaged
2018-10-01 14:00:39 Corey Bryant cloud-archive/queens: importance Undecided High
2018-10-01 14:01:10 Corey Bryant cloud-archive/rocky: status New Triaged
2018-10-01 14:01:11 Corey Bryant cloud-archive/rocky: importance Undecided High
2018-10-02 00:46:46 Corey Bryant bug task added horizon (Ubuntu)
2018-10-02 00:46:58 Corey Bryant nominated for series Ubuntu Cosmic
2018-10-02 00:46:58 Corey Bryant bug task added horizon (Ubuntu Cosmic)
2018-10-02 00:46:58 Corey Bryant nominated for series Ubuntu Bionic
2018-10-02 00:46:58 Corey Bryant bug task added horizon (Ubuntu Bionic)
2018-10-02 00:47:08 Corey Bryant horizon (Ubuntu Bionic): status New Triaged
2018-10-02 00:47:10 Corey Bryant horizon (Ubuntu Cosmic): status New Triaged
2018-10-02 00:47:12 Corey Bryant horizon (Ubuntu Bionic): importance Undecided High
2018-10-02 00:47:14 Corey Bryant horizon (Ubuntu Cosmic): importance Undecided High
2018-10-02 21:25:15 Corey Bryant cloud-archive/queens: importance High Critical
2018-10-02 21:25:18 Corey Bryant cloud-archive/rocky: importance High Critical
2018-10-02 21:25:21 Corey Bryant horizon (Ubuntu Bionic): importance High Critical
2018-10-02 21:25:25 Corey Bryant cloud-archive/queens: importance Critical High
2018-10-02 21:25:28 Corey Bryant horizon (Ubuntu Bionic): importance Critical High
2018-10-02 21:25:33 Corey Bryant cloud-archive/rocky: importance Critical High
2018-10-03 00:31:19 Corey Bryant horizon (Ubuntu Cosmic): status Triaged Fix Committed
2018-10-03 00:33:15 Corey Bryant cloud-archive: status Triaged Fix Committed
2018-10-03 00:49:44 Launchpad Janitor horizon (Ubuntu Cosmic): status Fix Committed Fix Released
2018-10-03 17:57:34 Corey Bryant cloud-archive: status Fix Committed Fix Released
2018-10-06 18:27:14 OpenStack Infra tags low-hanging-fruit sts in-stable-rocky low-hanging-fruit sts
2018-10-12 10:09:28 Edward Hope-Morley charm-openstack-dashboard: status In Progress Invalid
2018-10-12 10:09:35 Edward Hope-Morley charm-openstack-dashboard: assignee Seyeong Kim (xtrusia)
2018-10-12 10:09:37 Edward Hope-Morley charm-openstack-dashboard: milestone 18.11
2018-10-15 14:13:06 Corey Bryant description Hi, Volumes - Backup panel is visible even if OPENSTACK_CINDER_FEATURES = {'enable_backup': False} in local_settings.py Meanwhile setting enable_backup to false removes an option to create backup of a volume in the volume drop-down options. But panel with backups itself stays visible for both admins and users. As a work-around I use the following customization script: import horizon from django.conf import settings if not getattr(settings, 'OPENSTACK_CINDER_FEATURES', {}).get('enable_backup', False): project = horizon.get_dashboard("project") backup = project.get_panel("backups") project.unregister(backup.__class__) And for permanent fix I see the following decision. In openstack_dashboard/dashboards/project/backups/panel.py make the following changes: ... +L16: from django.conf import settings ... +L21: if not getattr(settings, 'OPENSTACK_CINDER_FEATURES', {}).get('enable_backup', False): +L22: return False ... Hi, Volumes - Backup panel is visible even if OPENSTACK_CINDER_FEATURES = {'enable_backup': False} in local_settings.py Meanwhile setting enable_backup to false removes an option to create backup of a volume in the volume drop-down options. But panel with backups itself stays visible for both admins and users. As a work-around I use the following customization script: import horizon from django.conf import settings if not getattr(settings, 'OPENSTACK_CINDER_FEATURES', {}).get('enable_backup', False):     project = horizon.get_dashboard("project")     backup = project.get_panel("backups")     project.unregister(backup.__class__) And for permanent fix I see the following decision. In openstack_dashboard/dashboards/project/backups/panel.py make the following changes: ... +L16: from django.conf import settings ... +L21: if not getattr(settings, 'OPENSTACK_CINDER_FEATURES', {}).get('enable_backup', False): +L22: return False ... == SRU details for Ubuntu = [Impact] [Test Case] Juju deploy openstack and manually test that backup panel is not visible if enable_backup is set to False. [Regression Potential] Low. The patch has landed upstream in master and stable/rocky and has received +2 for stable/queens. This patch has already landed in Ubuntu rocky as well.
2018-10-15 14:13:17 Corey Bryant description Hi, Volumes - Backup panel is visible even if OPENSTACK_CINDER_FEATURES = {'enable_backup': False} in local_settings.py Meanwhile setting enable_backup to false removes an option to create backup of a volume in the volume drop-down options. But panel with backups itself stays visible for both admins and users. As a work-around I use the following customization script: import horizon from django.conf import settings if not getattr(settings, 'OPENSTACK_CINDER_FEATURES', {}).get('enable_backup', False):     project = horizon.get_dashboard("project")     backup = project.get_panel("backups")     project.unregister(backup.__class__) And for permanent fix I see the following decision. In openstack_dashboard/dashboards/project/backups/panel.py make the following changes: ... +L16: from django.conf import settings ... +L21: if not getattr(settings, 'OPENSTACK_CINDER_FEATURES', {}).get('enable_backup', False): +L22: return False ... == SRU details for Ubuntu = [Impact] [Test Case] Juju deploy openstack and manually test that backup panel is not visible if enable_backup is set to False. [Regression Potential] Low. The patch has landed upstream in master and stable/rocky and has received +2 for stable/queens. This patch has already landed in Ubuntu rocky as well. Hi, Volumes - Backup panel is visible even if OPENSTACK_CINDER_FEATURES = {'enable_backup': False} in local_settings.py Meanwhile setting enable_backup to false removes an option to create backup of a volume in the volume drop-down options. But panel with backups itself stays visible for both admins and users. As a work-around I use the following customization script: import horizon from django.conf import settings if not getattr(settings, 'OPENSTACK_CINDER_FEATURES', {}).get('enable_backup', False):     project = horizon.get_dashboard("project")     backup = project.get_panel("backups")     project.unregister(backup.__class__) And for permanent fix I see the following decision. In openstack_dashboard/dashboards/project/backups/panel.py make the following changes: ... +L16: from django.conf import settings ... +L21: if not getattr(settings, 'OPENSTACK_CINDER_FEATURES', {}).get('enable_backup', False): +L22: return False ... == SRU details for Ubuntu = [Impact] See above. [Test Case] Juju deploy openstack and manually test that backup panel is not visible if enable_backup is set to False. [Regression Potential] Low. The patch has landed upstream in master and stable/rocky and has received +2 for stable/queens. This patch has already landed in Ubuntu rocky as well.
2018-10-15 14:13:26 Corey Bryant bug added subscriber Ubuntu SRU developers
2018-10-15 14:13:39 Corey Bryant removed subscriber Ubuntu SRU developers
2018-10-15 14:13:46 Corey Bryant bug added subscriber Ubuntu Stable Release Updates Team
2018-10-16 09:29:58 OpenStack Infra cloud-archive/queens: status Triaged Fix Committed
2018-10-16 09:30:10 OpenStack Infra tags in-stable-rocky low-hanging-fruit sts in-stable-pike in-stable-rocky low-hanging-fruit sts
2018-10-16 12:01:35 Corey Bryant description Hi, Volumes - Backup panel is visible even if OPENSTACK_CINDER_FEATURES = {'enable_backup': False} in local_settings.py Meanwhile setting enable_backup to false removes an option to create backup of a volume in the volume drop-down options. But panel with backups itself stays visible for both admins and users. As a work-around I use the following customization script: import horizon from django.conf import settings if not getattr(settings, 'OPENSTACK_CINDER_FEATURES', {}).get('enable_backup', False):     project = horizon.get_dashboard("project")     backup = project.get_panel("backups")     project.unregister(backup.__class__) And for permanent fix I see the following decision. In openstack_dashboard/dashboards/project/backups/panel.py make the following changes: ... +L16: from django.conf import settings ... +L21: if not getattr(settings, 'OPENSTACK_CINDER_FEATURES', {}).get('enable_backup', False): +L22: return False ... == SRU details for Ubuntu = [Impact] See above. [Test Case] Juju deploy openstack and manually test that backup panel is not visible if enable_backup is set to False. [Regression Potential] Low. The patch has landed upstream in master and stable/rocky and has received +2 for stable/queens. This patch has already landed in Ubuntu rocky as well. Hi, Volumes - Backup panel is visible even if OPENSTACK_CINDER_FEATURES = {'enable_backup': False} in local_settings.py Meanwhile setting enable_backup to false removes an option to create backup of a volume in the volume drop-down options. But panel with backups itself stays visible for both admins and users. As a work-around I use the following customization script: import horizon from django.conf import settings if not getattr(settings, 'OPENSTACK_CINDER_FEATURES', {}).get('enable_backup', False):     project = horizon.get_dashboard("project")     backup = project.get_panel("backups")     project.unregister(backup.__class__) And for permanent fix I see the following decision. In openstack_dashboard/dashboards/project/backups/panel.py make the following changes: ... +L16: from django.conf import settings ... +L21: if not getattr(settings, 'OPENSTACK_CINDER_FEATURES', {}).get('enable_backup', False): +L22: return False ... == SRU details for Ubuntu = [Impact] See above. [Test Case] Juju deploy openstack and manually test that backup panel is not visible if enable_backup is set to False. [Regression Potential] Low. The patch has landed upstream in master, stable/rocky, and stable/queens. This patch has already landed in Ubuntu rocky as well.
2018-10-25 14:36:18 Łukasz Zemczak horizon (Ubuntu Bionic): status Triaged Fix Committed
2018-10-25 14:36:22 Łukasz Zemczak bug added subscriber SRU Verification
2018-10-25 14:36:26 Łukasz Zemczak tags in-stable-pike in-stable-rocky low-hanging-fruit sts in-stable-pike in-stable-rocky low-hanging-fruit sts verification-needed verification-needed-bionic
2018-10-26 10:55:59 Edward Hope-Morley tags in-stable-pike in-stable-rocky low-hanging-fruit sts verification-needed verification-needed-bionic in-stable-pike in-stable-rocky low-hanging-fruit sts verification-done verification-done-bionic
2018-11-01 17:53:48 Launchpad Janitor horizon (Ubuntu Bionic): status Fix Committed Fix Released
2018-11-01 17:53:56 Steve Langasek removed subscriber Ubuntu Stable Release Updates Team
2018-11-02 12:01:48 Corey Bryant tags in-stable-pike in-stable-rocky low-hanging-fruit sts verification-done verification-done-bionic in-stable-pike in-stable-rocky low-hanging-fruit sts verification-done verification-done-bionic verification-queens-needed
2018-11-05 11:11:30 Edward Hope-Morley tags in-stable-pike in-stable-rocky low-hanging-fruit sts verification-done verification-done-bionic verification-queens-needed in-stable-pike in-stable-rocky low-hanging-fruit sts sts-sru-done verification-done verification-done-bionic verification-queens-done
2018-11-05 12:31:42 Corey Bryant cloud-archive/queens: status Fix Committed Fix Released