diff options
author | Rider Linden <rider@lindenlab.com> | 2016-06-23 15:03:39 -0700 |
---|---|---|
committer | Rider Linden <rider@lindenlab.com> | 2016-06-23 15:03:39 -0700 |
commit | d161651cdb2ea8c3e73055cbf4a85510b8da56db (patch) | |
tree | ef20df24d38c07d3aef23c3f06d417b0f4123b90 /indra/newview | |
parent | 0a9f25bcfbc977cf894e83fda95d7ff693039923 (diff) |
MAINT-6521: Allow anonymous connections to bypass the dependency and order tracking.
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/llxmlrpclistener.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llxmlrpclistener.cpp b/indra/newview/llxmlrpclistener.cpp index 97a9eb7f5f..cc3645131d 100644 --- a/indra/newview/llxmlrpclistener.cpp +++ b/indra/newview/llxmlrpclistener.cpp @@ -322,7 +322,7 @@ public: mBoundListener = LLEventPumps::instance(). obtain("mainloop"). - listen(LLEventPump::inventName(), boost::bind(&Poller::poll, this, _1)); + listen(LLEventPump::ANONYMOUS, boost::bind(&Poller::poll, this, _1)); LL_INFOS("LLXMLRPCListener") << mMethod << " request sent to " << mUri << LL_ENDL; } |