It would be nice to support HTTPS/SSL for POST-requests automatically. This feature can easily be added - with an option ("--ssl") or - auto-detection (e.g., when using port 443) or - by allowing a prefix ("https://") for the hostname. For my use-case , I simply changed the `HTTPConnection` into a `HTTPSConnection`, in the following line: https://github.com/buildbot/buildbot-contrib/blob/5d56204d28998f4dcf4c8e476b755086874485d6/master/contrib/post_build_request.py#L233
It would be nice to support HTTPS/SSL for POST-requests automatically.
This feature can easily be added
For my use-case , I simply changed the
HTTPConnectioninto aHTTPSConnection, in the following line:buildbot-contrib/master/contrib/post_build_request.py
Line 233 in 5d56204