Commit c43fe2db authored by Tien Thinh NGUYEN's avatar Tien Thinh NGUYEN

Fix issue to create Edge from UPF info

parent 18430da7
......@@ -51,7 +51,7 @@ edge edge::from_upf_info(const upf_info_t& upf_info) {
Logger::smf_app().debug(
"Edge from UPF info, UPF info %s", upf_info.to_string().c_str());
for (const auto& snssai : upf_info.snssai_upf_info_list) {
for (auto& snssai : upf_info.snssai_upf_info_list) {
snssai_item.snssai = snssai.snssai;
bool found = false;
for (auto& item : e.snssai_dnns) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment