Skip to content

Commit

Permalink
Merge branch 'DEVOPS-10175' of github.com:BITERP/PinkRabbitMQ into DE…
Browse files Browse the repository at this point in the history
…VOPS-10175
  • Loading branch information
ipalenov committed Jun 7, 2024
2 parents 441905e + 8047678 commit 0f73f8d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/windows/SimplePocoHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ struct SimplePocoHandlerImpl
Poco::Timespan pollTimeout;
};
SimplePocoHandler::SimplePocoHandler(const std::string& host, uint16_t port, bool ssl) :
m_impl(new SimplePocoHandlerImpl(ssl, host))
m_impl(new SimplePocoHandlerImpl(ssl, host)), stop(false)
{
const Poco::Net::SocketAddress address(host, port);
m_impl->socket->connect(address);
Expand All @@ -124,7 +124,7 @@ SimplePocoHandler::~SimplePocoHandler()
close();
}

void SimplePocoHandler::setConnection(AMQP::Connection* connection): stop(false)
void SimplePocoHandler::setConnection(AMQP::Connection* connection)
{
m_impl->connection = connection;
}
Expand Down

0 comments on commit 0f73f8d

Please sign in to comment.