Skip to content
This repository has been archived by the owner on Jun 21, 2023. It is now read-only.

Commit

Permalink
disable rmw_service_server_is_available until local entities notify
Browse files Browse the repository at this point in the history
  • Loading branch information
wjwwood committed May 27, 2016
1 parent 03d9d09 commit b6b9f37
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions rmw_connext_cpp/src/functions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1537,6 +1537,10 @@ rmw_service_server_is_available(
const rmw_client_t * client,
bool * is_available)
{
// TODO(wjwwood): remove this once local graph changes are detected.
RMW_SET_ERROR_MSG("not implemented");
return RMW_RET_ERROR;

if (!node) {
RMW_SET_ERROR_MSG("node handle is null");
return RMW_RET_ERROR;
Expand Down
4 changes: 4 additions & 0 deletions rmw_connext_dynamic_cpp/src/functions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3324,6 +3324,10 @@ rmw_service_server_is_available(
const rmw_client_t * client,
bool * is_available)
{
// TODO(wjwwood): remove this once local graph changes are detected.
RMW_SET_ERROR_MSG("not implemented");
return RMW_RET_ERROR;

if (!node) {
RMW_SET_ERROR_MSG("node handle is null");
return RMW_RET_ERROR;
Expand Down

0 comments on commit b6b9f37

Please sign in to comment.