Skip to content

Commit

Permalink
api: fix default port to bind API service
Browse files Browse the repository at this point in the history
Due to a wrong copy paste, the default port was 8777 which is already
used by Ceilemeter API service. Let's use the default Aodh: 8042.

Change-Id: I5b51f7337f4381035849d2f2032e1063b428540d
  • Loading branch information
EmilienM committed Oct 22, 2015
1 parent 54f857d commit fb8be80
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions manifests/api.pp
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
#
# [*port*]
# (optional) The aodh api port.
# Defaults to 8777
# Defaults to 8042
#
# [*package_ensure*]
# (optional) ensure state for package.
Expand All @@ -61,7 +61,7 @@
$keystone_auth_uri = false,
$keystone_identity_uri = false,
$host = '0.0.0.0',
$port = '8777',
$port = '8042',
$service_name = $::aodh::params::api_service_name,
) inherits aodh::params {

Expand Down
2 changes: 1 addition & 1 deletion spec/classes/aodh_api_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
:keystone_tenant => 'services',
:keystone_user => 'aodh',
:package_ensure => 'latest',
:port => '8777',
:port => '8042',
:host => '0.0.0.0',
}
end
Expand Down

0 comments on commit fb8be80

Please sign in to comment.