From bfd0e5dd6f2bf4b34b5456b7259242f1e7b1f2f7 Mon Sep 17 00:00:00 2001 From: zhengshuxin Date: Sat, 20 Jul 2019 17:00:56 +0800 Subject: [PATCH] modify http_servlet.cpp in wizard --- app/wizard/tmpl/http/http_servlet.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/wizard/tmpl/http/http_servlet.cpp b/app/wizard/tmpl/http/http_servlet.cpp index 08abf4b7f..fe30ec78b 100644 --- a/app/wizard/tmpl/http/http_servlet.cpp +++ b/app/wizard/tmpl/http/http_servlet.cpp @@ -4,7 +4,7 @@ http_servlet::http_servlet(acl::socket_stream* stream, acl::session* session) : acl::HttpServlet(stream, session) { - handlers_["/hello"] = &http_servlet::on_hello; + handlers_["/hello/"] = &http_servlet::on_hello; } http_servlet::~http_servlet(void)