summaryrefslogtreecommitdiff
path: root/components/rvi_common
diff options
context:
space:
mode:
authorMagnus Feuer <mfeuer@jaguarlandrover.com>2015-06-25 14:49:56 -0700
committerMagnus Feuer <mfeuer@jaguarlandrover.com>2015-06-25 14:49:56 -0700
commit93683b690cab115084a3eea17ecf10a486854c9e (patch)
tree054756eee9353469549f0960fcbbcc51b818c8f7 /components/rvi_common
parentb116a72d2bdb88247907e415b3fcdcf83308e255 (diff)
downloadrvi_core-93683b690cab115084a3eea17ecf10a486854c9e.tar.gz
rvi renamed rvi_core. MErged with release-next
Diffstat (limited to 'components/rvi_common')
-rw-r--r--components/rvi_common/src/rvi_common.erl6
1 files changed, 3 insertions, 3 deletions
diff --git a/components/rvi_common/src/rvi_common.erl b/components/rvi_common/src/rvi_common.erl
index 70a8a85..130bddb 100644
--- a/components/rvi_common/src/rvi_common.erl
+++ b/components/rvi_common/src/rvi_common.erl
@@ -400,7 +400,7 @@ remote_service_to_string(Type, Service) ->
local_service_prefix() ->
Prefix =
- case application:get_env(rvi, ?NODE_SERVICE_PREFIX) of
+ case application:get_env(rvi_core, ?NODE_SERVICE_PREFIX) of
{ok, P} when is_atom(P) -> atom_to_list(P);
{ok, P} when is_list(P) -> P;
undefined ->
@@ -418,7 +418,7 @@ local_service_prefix() ->
node_address_string() ->
- case application:get_env(rvi, ?NODE_ADDRESS) of
+ case application:get_env(rvi_core, ?NODE_ADDRESS) of
{ok, P} when is_atom(P) -> atom_to_list(P);
{ok, P} when is_list(P) -> P;
undefined ->
@@ -449,7 +449,7 @@ get_component_config_(Component, Default, CompList) ->
end.
get_component_specification() ->
- case application:get_env(rvi, components, undefined) of
+ case application:get_env(rvi_core, components, undefined) of
undefined ->
#component_spec {
service_edge = ?COMP_SPEC_SERVICE_EDGE_DEFAULT,