summaryrefslogtreecommitdiff
path: root/components/schedule
diff options
context:
space:
mode:
authorMagnus Feuer <mfeuer@jaguarlandrover.com>2015-03-24 13:33:11 -0700
committerMagnus Feuer <mfeuer@jaguarlandrover.com>2015-03-24 13:33:11 -0700
commit0e71f5be3761bd27581d49d4935c5d9b418a9ec4 (patch)
tree1e1989c44dc7fc46ef83a370000e526e41e4627c /components/schedule
parente3d077a738eb9548336d987001261977196a1c3f (diff)
downloadrvi_core-0e71f5be3761bd27581d49d4935c5d9b418a9ec4.tar.gz
Typo
Diffstat (limited to 'components/schedule')
-rw-r--r--components/schedule/src/schedule_rpc.erl12
1 files changed, 6 insertions, 6 deletions
diff --git a/components/schedule/src/schedule_rpc.erl b/components/schedule/src/schedule_rpc.erl
index df7c280..64b57cb 100644
--- a/components/schedule/src/schedule_rpc.erl
+++ b/components/schedule/src/schedule_rpc.erl
@@ -135,15 +135,15 @@ register_remote_services(CompSpec, NetworkAddress, Services) ->
rvi_common:notification(schedule, ?MODULE,
register_remote_services,
[{ network_address, NetworkAddress} ,
- { services, Services }],
- [status, transaction_id], CompSpec).
+ { services, Services }],
+ CompSpec).
unregister_remote_services(CompSpec, ServiceNames) ->
rvi_common:notification(schedule, ?MODULE,
unregister_remote_services,
- [{ services, ServiceNames }],
- [status], CompSpec).
+ [{ services, ServiceNames }],
+ CompSpec).
@@ -251,14 +251,14 @@ handle_cast( {rvi, register_remote_services,
[Services, NetworkAddress]),
{ok, NSt} = multiple_services_available(Services, NetworkAddress, St),
- {reply, [ok], NSt};
+ {noreply, NSt};
handle_cast( {rvi, unregister_remote_services, [ServiceNames]}, St) ->
?info("schedule:unregister_remote_services(): Services(~p)", [ServiceNames]),
{ok, NSt} = multiple_services_unavailable(ServiceNames, St),
- {reply, [ok], NSt };
+ {noreply, NSt };
handle_cast(Other, St) ->
?warning("schedule:handle_cast(~p): unknown", [ Other ]),