titanium-web-proxy icon indicating copy to clipboard operation
titanium-web-proxy copied to clipboard

When SetResponseBodyString await e.GetResponseBodyAsString() will takes more than 120s

Open lulianqi opened this issue 3 years ago • 0 comments

 private async Task ProxyServer_BeforeResponse(object sender, SessionEventArgs e)
        {
            //long string is 1kb
            e.SetResponseBodyString("long string")
            //It takes more than 120s
            await e.GetResponseBodyAsString();
       }

When SetResponseBodyString await e.GetResponseBodyAsString() will takes more than 120s

lulianqi avatar Jun 07 '22 12:06 lulianqi