[oe-commits] Roxana Ciobanu : scripts/send-error-report: fetch /Errors/ instead of /.

git at git.openembedded.org git at git.openembedded.org
Wed Aug 6 09:23:54 UTC 2014


Module: openembedded-core.git
Branch: master
Commit: af93c89febcd186d7e31f1d15affc15f38e3379d
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=af93c89febcd186d7e31f1d15affc15f38e3379d

Author: Roxana Ciobanu <roxana.ciobanu at intel.com>
Date:   Mon Aug  4 15:16:39 2014 +0300

scripts/send-error-report: fetch /Errors/ instead of /.

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 at intel.com>
Signed-off-by: Saul Wold <sgw at linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 scripts/send-error-report | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/send-error-report b/scripts/send-error-report
index 48d983b..c99d387 100755
--- a/scripts/send-error-report
+++ b/scripts/send-error-report
@@ -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



More information about the Openembedded-commits mailing list