Merge "Dont include logging in init class by default"

This commit is contained in:
Zuul 2018-12-14 03:42:14 +00:00 committed by Gerrit Code Review
commit fe72f0f523
3 changed files with 4 additions and 5 deletions

View File

@ -213,7 +213,6 @@ class tacker(
) inherits tacker::params {
include ::tacker::deps
include ::tacker::logging
if $sync_db {
include ::tacker::db::sync

View File

@ -0,0 +1,4 @@
---
upgrade:
- |
tacker::logging is now not included in init class by default.

View File

@ -10,10 +10,6 @@ describe 'tacker' do
}
end
it 'contains the logging class' do
is_expected.to contain_class('tacker::logging')
end
it 'contains the deps class' do
is_expected.to contain_class('tacker::deps')
end