diff options
Diffstat (limited to 'mod/mod-builds.cxx')
-rw-r--r-- | mod/mod-builds.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mod/mod-builds.cxx b/mod/mod-builds.cxx index e43739f..f255b25 100644 --- a/mod/mod-builds.cxx +++ b/mod/mod-builds.cxx @@ -50,7 +50,7 @@ builds (const builds& r) void brep::builds:: init (scanner& s) { - MODULE_DIAG; + HANDLER_DIAG; options_ = make_shared<options::builds> ( s, unknown_mode::fail, unknown_mode::fail); @@ -264,7 +264,7 @@ handle (request& rq, response& rs) using brep::version; using namespace web::xhtml; - MODULE_DIAG; + HANDLER_DIAG; if (build_db_ == nullptr) throw invalid_request (501, "not implemented"); @@ -277,7 +277,7 @@ handle (request& rq, response& rs) try { - name_value_scanner s (rq.parameters ()); + name_value_scanner s (rq.parameters (8 * 1024)); params = params::builds (s, unknown_mode::fail, unknown_mode::fail); } catch (const cli::exception& e) |