]> code.ossystems Code Review - openembedded-core.git/commitdiff
scripts/send-error-report: fetch /Errors/ instead of /.
authorRoxana Ciobanu <roxana.ciobanu@intel.com>
Mon, 4 Aug 2014 12:16:39 +0000 (15:16 +0300)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 6 Aug 2014 09:20:35 +0000 (10:20 +0100)
If HTTP_PROXY or http_proxy is set when the send-error-report script
is run, it will check to see if fetching / on the specified server
returns 200 without the proxy set. If it does it will assume that the
proxy is not needed. However this check can never work because
fetching / always redirects to /Errors/ in the current code and
thus returns code 301. This is fixed by fetching /Errors/ instead of /.

[YOCTO #YB6576]

Signed-off-by: Roxana Ciobanu <roxana.ciobanu@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
scripts/send-error-report

index 48d983bc0ef359fc49e7ed76d4a66d218cf3da08..c99d3876d7bc4220936c2084dd8887758c75e9a8 100755 (executable)
@@ -20,7 +20,7 @@ def handle_connection(server, data):
         # we need to check that the server isn't a local one, as in no_proxy
         try:
             temp = httplib.HTTPConnection(server, strict=True, timeout=5)
-            temp.request("GET", "/")
+            temp.request("GET", "/Errors/")
             tempres = temp.getresponse()
             if tempres.status == 200:
                 proxyrequired = False