Update lbaas url for Queens, logging handler

* remove postgres references
* update lbaas url to stable/queens
* update logging handler to reflect the current state of things

Change-Id: Ie298fec4dc1ed35119ffe844f356d1c72cfaa6f8
This commit is contained in:
Samuel Cassiba 2018-03-02 17:59:26 -08:00
parent 7158b2c63e
commit 09d7658e42
4 changed files with 4 additions and 5 deletions

View File

@ -31,7 +31,7 @@ python_package 'neutron-lbaas-dashboard' do
end
remote_file "#{django_path}/openstack_dashboard/local/enabled/_1481_project_ng_loadbalancersv2_panel.py" do
source 'https://raw.githubusercontent.com/openstack/neutron-lbaas-dashboard/stable/pike/neutron_lbaas_dashboard/enabled/_1481_project_ng_loadbalancersv2_panel.py'
source 'https://raw.githubusercontent.com/openstack/neutron-lbaas-dashboard/stable/queens/neutron_lbaas_dashboard/enabled/_1481_project_ng_loadbalancersv2_panel.py'
owner 'root'
mode 0o0644
notifies :run, 'execute[openstack-dashboard collectstatic]'

View File

@ -431,8 +431,7 @@ describe 'openstack-dashboard::horizon' do
end
{ 'mysql' => 'django.db.backends.mysql',
'sqlite' => 'django.db.backends.sqlite3',
'postgresql' => 'django.db.backends.postgresql_psycopg2' }.each do |service_type, backend|
'sqlite' => 'django.db.backends.sqlite3' }.each do |service_type, backend|
context "#{service_type} database settings" do
before do
allow_any_instance_of(Chef::Recipe).to receive(:db)

View File

@ -30,7 +30,7 @@ describe 'openstack-dashboard::neutron-lbaas-dashboard' do
).with(
mode: 0o0644,
owner: 'root',
source: 'https://raw.githubusercontent.com/openstack/neutron-lbaas-dashboard/stable/pike/neutron_lbaas_dashboard/enabled/_1481_project_ng_loadbalancersv2_panel.py'
source: 'https://raw.githubusercontent.com/openstack/neutron-lbaas-dashboard/stable/queens/neutron_lbaas_dashboard/enabled/_1481_project_ng_loadbalancersv2_panel.py'
)
end

View File

@ -355,7 +355,7 @@ LOGGING = {
'handlers': {
'null': {
'level': 'DEBUG',
'class': 'django.utils.log.NullHandler',
'class': 'logging.NullHandler',
},
'console': {
# Set the level to "DEBUG" for verbose output logging.