Skip to content

Commit

Permalink
prevent narrowing conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
Tectu committed Apr 13, 2022
1 parent 7957539 commit 60e421d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/malloy/server/http/connection.hpp
Expand Up @@ -120,8 +120,8 @@ namespace malloy::server::http
*/
struct config
{
std::uint64_t request_body_limit = 10 * 10e6; ///< The maximum allowed body request size in bytes.
std::string agent_string; ///< Agent string to use, set by the controller
std::uint64_t request_body_limit = 100'000'000; ///< The maximum allowed body request size in bytes.
std::string agent_string; ///< Agent string to use, set by the controller
};

/**
Expand Down

0 comments on commit 60e421d

Please sign in to comment.