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/llmessage | |
parent | 0a9f25bcfbc977cf894e83fda95d7ff693039923 (diff) |
MAINT-6521: Allow anonymous connections to bypass the dependency and order tracking.
Diffstat (limited to 'indra/llmessage')
-rw-r--r-- | indra/llmessage/llcorehttputil.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llmessage/llcorehttputil.cpp b/indra/llmessage/llcorehttputil.cpp index 7742cbc182..9bf38fb336 100644 --- a/indra/llmessage/llcorehttputil.cpp +++ b/indra/llmessage/llcorehttputil.cpp @@ -642,7 +642,7 @@ HttpRequestPumper::HttpRequestPumper(const LLCore::HttpRequest::ptr_t &request) mHttpRequest(request) { mBoundListener = LLEventPumps::instance().obtain("mainloop"). - listen(LLEventPump::inventName(), boost::bind(&HttpRequestPumper::pollRequest, this, _1)); + listen(LLEventPump::ANONYMOUS, boost::bind(&HttpRequestPumper::pollRequest, this, _1)); } HttpRequestPumper::~HttpRequestPumper() |