Skip to content

Commit

Permalink
fixed trailing dots in schema
Browse files Browse the repository at this point in the history
  • Loading branch information
Joe DeVivo committed Sep 5, 2013
1 parent 08dc795 commit 804f588
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions rel/files/riak.schema
Expand Up @@ -97,7 +97,7 @@
{ translation,
"riak_core.http",
fun(Conf) ->
HTTP = cuttlefish_util:filter_by_variable_starts_with("listener.http.", Conf),
HTTP = cuttlefish_util:filter_by_variable_starts_with("listener.http", Conf),
[ IP || {_, IP} <- HTTP]
end
}.
Expand All @@ -114,7 +114,7 @@
{ translation,
"riak_api.pb",
fun(Conf) ->
PB = cuttlefish_util:filter_by_variable_starts_with("listener.protobuf.", Conf),
PB = cuttlefish_util:filter_by_variable_starts_with("listener.protobuf", Conf),
[ IP || {_, IP} <- PB]
end
}.
Expand Down Expand Up @@ -145,7 +145,7 @@
{ translation,
"riak_core.https",
fun(Conf) ->
HTTPS = cuttlefish_util:filter_by_variable_starts_with("listener.https.", Conf),
HTTPS = cuttlefish_util:filter_by_variable_starts_with("listener.https", Conf),
[ IP || {_, IP} <- HTTPS]
end
}.
Expand Down

0 comments on commit 804f588

Please sign in to comment.