During finalization of payloads that are consumed until complete, inside the X class, within the method BaseHttpTransaction::Parse(), function local bool success is set like so:
`success = !finalizationFailed;
However, this set is done within the if (contentEncoding.first != contentEncoding.second), so for non-compressed payloads that are consumed until completion, BaseHttpTransaction::Parse() will always return failure. Fixed in next commit.
During finalization of payloads that are consumed until complete, inside the X class, within the method
BaseHttpTransaction::Parse()
, function localbool success
is set like so:`success = !finalizationFailed;
However, this set is done within the
if (contentEncoding.first != contentEncoding.second)
, so for non-compressed payloads that are consumed until completion,BaseHttpTransaction::Parse()
will always return failure. Fixed in next commit.