Skip to content

Commit

Permalink
Merge pull request pistacheio#1195 from jiankyu/issue-1194
Browse files Browse the repository at this point in the history
fix pistacheio#1194: Endpoint::Options::backlog_ not used
  • Loading branch information
Tachi107 authored Feb 24, 2024
2 parents 1964b0c + 80ca76d commit 875c973
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/server/endpoint.cc
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ namespace Pistache::Http

void Endpoint::init(const Endpoint::Options& options)
{
listener.init(options.threads_, options.flags_, options.threadsName_);
listener.init(options.threads_, options.flags_, options.threadsName_, options.backlog_);
listener.setTransportFactory([this, options] {
if (!handler_)
throw std::runtime_error("Must call setHandler()");
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.2.7.20240212
0.2.7.20240223

0 comments on commit 875c973

Please sign in to comment.