Skip to content

Commit

Permalink
Fixes #29664 - Change default Candlepin port to 9443
Browse files Browse the repository at this point in the history
  • Loading branch information
ehelms committed Jun 5, 2020
1 parent eb775f8 commit 3d5a57e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion manifests/params.pp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# @api private
class candlepin::params {
$ssl_port = 8443
$ssl_port = 9443
$host = 'localhost'

$manage_db = true
Expand Down
4 changes: 2 additions & 2 deletions spec/acceptance/basic_candlepin_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
describe 'candlepin works' do
include_examples 'the example', 'basic_candlepin.pp'

describe port(8443) do
describe port(9443) do
it { is_expected.to be_listening }
end

describe command('curl -k -s -o /dev/null -w \'%{http_code}\' https://localhost:8443/candlepin/status') do
describe command('curl -k -s -o /dev/null -w \'%{http_code}\' https://localhost:9443/candlepin/status') do
its(:stdout) { should eq "200" }
end
end

0 comments on commit 3d5a57e

Please sign in to comment.