fix the reboot bug in package scenario

This commit is contained in:
Sukchan Lee
2017-12-18 16:02:28 +09:00
parent 48c5574819
commit 65088e690d
2 changed files with 3 additions and 3 deletions

View File

@@ -147,7 +147,7 @@ static status_t mme_context_validation()
{
d_error("No mme.s1ap in '%s'",
context_self()->config.path);
return CORE_ERROR;
return CORE_EAGAIN;
}
if (list_first(&self.gtpc_list) == NULL &&
@@ -155,7 +155,7 @@ static status_t mme_context_validation()
{
d_error("No mme.gtpc in '%s'",
context_self()->config.path);
return CORE_ERROR;
return CORE_EAGAIN;
}
if (list_first(&self.sgw_list) == NULL)

View File

@@ -115,7 +115,7 @@ static status_t sgw_context_validation()
{
d_error("No sgw.gtpu in '%s'",
context_self()->config.path);
return CORE_ERROR;
return CORE_EAGAIN;
}
return CORE_OK;
}