mirror of
https://github.com/open5gs/open5gs.git
synced 2025-11-02 21:13:40 +00:00
fix the reboot bug in package scenario
This commit is contained in:
@@ -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)
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user