Fix reporting errors with wrong types passed to HostingServiceHTTPRequest.
Review Request #11644 — Created June 3, 2021 and submitted — Latest diff uploaded
HostingServiceHTTPRequest
checks for the type on thebody
and
headers
arguments during construction, logging and raising an
exception if types aren't correct.This fails, since the logging code attempts to report information on the
request that isn't yet set at that point during construction.To address this, we're now setting those attributes on the class before
we perform any type checking.
Unit tests pass.