Skip to content

Commit

Permalink
Merge
Browse files Browse the repository at this point in the history
  • Loading branch information
bernardnormier committed Feb 9, 2024
1 parent 2f2b919 commit 5110db9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions cpp/src/Ice/ConnectionRequestHandler.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@
namespace IceInternal
{

class FixedRequestHandler final :
class ConnectionRequestHandler final :
public RequestHandler,
public std::enable_shared_from_this<FixedRequestHandler>
public std::enable_shared_from_this<ConnectionRequestHandler>
{
public:

FixedRequestHandler(const ReferencePtr&, const Ice::ConnectionIPtr&, bool);
ConnectionRequestHandler(const ReferencePtr&, const Ice::ConnectionIPtr&, bool);

virtual AsyncStatus sendAsyncRequest(const ProxyOutgoingAsyncBasePtr&);

Expand Down
2 changes: 1 addition & 1 deletion cpp/src/Ice/Reference.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -737,7 +737,7 @@ IceInternal::FixedReference::getRequestHandler() const
}

ReferencePtr ref = const_cast<FixedReference*>(this)->shared_from_this();
return make_shared<FixedRequestHandler>(ref, _fixedConnection, compress);
return make_shared<ConnectionRequestHandler>(ref, _fixedConnection, compress);
}

BatchRequestQueuePtr
Expand Down

0 comments on commit 5110db9

Please sign in to comment.