Commit 5bd02284 authored by Tien-Thinh Nguyen's avatar Tien-Thinh Nguyen

Fix URI path - HTTP2 server

parent 230b5f6f
......@@ -86,7 +86,7 @@ void udm_http2_server::start() {
// Confirm/Delete Auth
server.handle(
NUDM_UE_AU_BASE + udm_cfg.sbi.api_version,
NUDM_UE_AU_BASE + udm_cfg.sbi.api_version + "/",
[&](const request& request, const response& response) {
request.on_data([&](const uint8_t* data, std::size_t len) {
std::string msg((char*) data, len);
......@@ -128,7 +128,7 @@ void udm_http2_server::start() {
});
server.handle(
NUDM_SDM_BASE + udm_cfg.sbi.api_version,
NUDM_SDM_BASE + udm_cfg.sbi.api_version + "/",
[&](const request& request, const response& response) {
request.on_data([&](const uint8_t* data, std::size_t len) {
std::string msg((char*) data, len);
......
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