Roundup Tracker - Issues

Message6739

Author rouilj
Recipients rouilj, schlatterbeck
Date 2019-10-13.21:32:47
Message-id <1571002367.4.0.0856866345459.issue2550925@roundup.psfhosted.org>
In-reply-to
Added the following to roundup/cgi/client.py-Client::main()

        # strip HTTP_PROXY issue2550925 in case                                 
        # PROXY header is set.                                                  
        if 'HTTP_PROXY' in self.env:
            del(self.env['HTTP_PROXY'])
        if 'HTTP_PROXY' in os.environ:
            del(os.environ['HTTP_PROXY'])

This removes the variable from code flows in the rest, xmlrpc and
inner_main (web) interface.

Any review notes Ralf?
History
Date User Action Args
2019-10-13 21:32:47rouiljsetmessageid: <1571002367.4.0.0856866345459.issue2550925@roundup.psfhosted.org>
2019-10-13 21:32:47rouiljsetrecipients: + rouilj, schlatterbeck
2019-10-13 21:32:47rouiljlinkissue2550925 messages
2019-10-13 21:32:47rouiljcreate