From d15e54278e57090c8edec08804d3370027348e92 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Mon, 2 Mar 2020 09:24:13 -0500 Subject: [PATCH] remove debnugging hook --- http2.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http2.d b/http2.d index 4347144..5107e87 100644 --- a/http2.d +++ b/http2.d @@ -1379,7 +1379,7 @@ class HttpRequest { } if(followLocation && responseData.location.length) { static bool first = true; - version(DigitalMars) if(!first) asm { int 3; } + //version(DigitalMars) if(!first) asm { int 3; } populateFromInfo(Uri(responseData.location), HttpVerb.GET); import std.stdio; writeln("redirected to ", responseData.location); first = false;