Skip to content

Commit

Permalink
Specify the candlepin event queue in katello_devel params
Browse files Browse the repository at this point in the history
We only call katello::qpid directly, and the katello top-level namespace
isn't loaded when katello_devel is running, so the queue name
doesn't resolve.
  • Loading branch information
stbenjam committed Apr 12, 2016
1 parent f45b650 commit 741e117
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
7 changes: 4 additions & 3 deletions manifests/init.pp
Original file line number Diff line number Diff line change
Expand Up @@ -157,9 +157,10 @@
ssl_cert_password_file => $certs::qpid::nss_db_password_file,
} ~>
class { '::katello::qpid':
client_cert => $certs::qpid::client_cert,
client_key => $certs::qpid::client_key,
katello_user => $user,
client_cert => $certs::qpid::client_cert,
client_key => $certs::qpid::client_key,
katello_user => $user,
candlepin_event_queue => $candlepin_event_queue,
}

}
1 change: 1 addition & 0 deletions manifests/params.pp
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,6 @@
$initial_location = 'Default Location'
$admin_password = 'changeme'
$enable_ostree = false
$candlepin_event_queue = 'katello_event_queue'

}

0 comments on commit 741e117

Please sign in to comment.