Skip to content

Commit

Permalink
Fix get queue dispatcher threads method
Browse files Browse the repository at this point in the history
  • Loading branch information
testillano authored and Eduardo Ramos Testillano (eramedu) committed Jul 23, 2023
1 parent 61e4a78 commit 6c25ac5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Http2Server.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ int Http2Server::getQueueDispatcherBusyThreads() const {
}

int Http2Server::getQueueDispatcherThreads() const {
return (queue_dispatcher_ ? queue_dispatcher_->getSize():0);
return (queue_dispatcher_ ? queue_dispatcher_->getThreads():0);
}

int Http2Server::getQueueDispatcherSize() const {
Expand Down

0 comments on commit 6c25ac5

Please sign in to comment.