Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Namespace override with ROS2_NAMESPACE environment variable #993

Open
wants to merge 5 commits into
base: rolling
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
environment variable changed from ROS2_NAMESPACE to ROS_NAMESPACE
  • Loading branch information
alpylmz committed Jul 14, 2022
commit 7de72e2b84c49f999d6ebb949ff9921956af230b
2 changes: 1 addition & 1 deletion rcl/src/rcl/node.c
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ extern "C"
#include "./context_impl.h"

const char * const RCL_DISABLE_LOANED_MESSAGES_ENV_VAR = "ROS_DISABLE_LOANED_MESSAGES";
const char * const RCL_NAMESPACE_ENV_VAR = "ROS2_NAMESPACE";
const char * const RCL_NAMESPACE_ENV_VAR = "ROS_NAMESPACE";

struct rcl_node_impl_s
{
Expand Down