VCL: cleanup namespace_secret env-var cfg code.
Change-Id: I9de8dd822494abe1b8701a72a9b8bede34dea8dc Signed-off-by: Dave Wallace <dwallacelf@gmail.com>
This commit is contained in:
Dave Wallace
committed by
Keith Burns
parent
fbbb07c33e
commit
9a0546d8c5
@ -2158,25 +2158,6 @@ vppcom_app_create (char *app_name)
|
|||||||
"filename (%s) from " VPPCOM_ENV_API_PREFIX "!",
|
"filename (%s) from " VPPCOM_ENV_API_PREFIX "!",
|
||||||
getpid (), env_var_str, vcl_cfg->vpp_api_filename);
|
getpid (), env_var_str, vcl_cfg->vpp_api_filename);
|
||||||
}
|
}
|
||||||
|
|
||||||
env_var_str = getenv (VPPCOM_ENV_APP_NAMESPACE_SECRET);
|
|
||||||
if (env_var_str)
|
|
||||||
{
|
|
||||||
u64 tmp;
|
|
||||||
if (sscanf (env_var_str, "%lu", &tmp) != 1)
|
|
||||||
clib_warning ("VCL<%d>: WARNING: Invalid namespace secret "
|
|
||||||
"specified in the environment variable "
|
|
||||||
VPPCOM_ENV_APP_NAMESPACE_SECRET
|
|
||||||
" (%s)!\n", getpid (), env_var_str);
|
|
||||||
else
|
|
||||||
{
|
|
||||||
vcm->cfg.namespace_secret = tmp;
|
|
||||||
if (VPPCOM_DEBUG > 0)
|
|
||||||
clib_warning ("VCL<%d>: configured namespace secret "
|
|
||||||
"(%lu) from " VPPCOM_ENV_APP_NAMESPACE_ID "!",
|
|
||||||
getpid (), vcm->cfg.namespace_secret);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
env_var_str = getenv (VPPCOM_ENV_APP_NAMESPACE_ID);
|
env_var_str = getenv (VPPCOM_ENV_APP_NAMESPACE_ID);
|
||||||
if (env_var_str)
|
if (env_var_str)
|
||||||
{
|
{
|
||||||
@ -2206,7 +2187,7 @@ vppcom_app_create (char *app_name)
|
|||||||
if (VPPCOM_DEBUG > 0)
|
if (VPPCOM_DEBUG > 0)
|
||||||
clib_warning ("VCL<%d>: configured namespace secret "
|
clib_warning ("VCL<%d>: configured namespace secret "
|
||||||
"(%lu) from "
|
"(%lu) from "
|
||||||
VPPCOM_ENV_APP_NAMESPACE_ID
|
VPPCOM_ENV_APP_NAMESPACE_SECRET
|
||||||
"!", getpid (), vcm->cfg.namespace_secret);
|
"!", getpid (), vcm->cfg.namespace_secret);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user