From 9b7cd0f395c46e53734f0da84106378ef707c50c Mon Sep 17 00:00:00 2001 From: Carl Johnson Date: Mon, 6 Nov 2017 10:53:21 -0800 Subject: [PATCH] More SSL warning info in media_player.vizio.markdown (#3909) Adding more specifics on how to *only* block the specific SSL verification warning line. This is a more elegant (if advanced) way since it doesn't involve reducing overall log level or affecting all media_player components. --- source/_components/media_player.vizio.markdown | 3 +++ 1 file changed, 3 insertions(+) diff --git a/source/_components/media_player.vizio.markdown b/source/_components/media_player.vizio.markdown index ae68385e13a..7c8cfa363ba 100644 --- a/source/_components/media_player.vizio.markdown +++ b/source/_components/media_player.vizio.markdown @@ -97,4 +97,7 @@ Vizio SmartCast service is accessible through HTTPS with self-signed certificate `InsecureRequestWarning: Unverified HTTPS request is being made. Adding certificate verification is strongly advised.` You can adjust the log level for `media_player` components with the [logger](https://home-assistant.io/components/logger/) component, or if you need to keep a low log level for `media_player` you could proxy calls to your TV through an NGINX reverse proxy. + +If you want to only ignore only this specific [python urllib3 SSL warning](https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warnings), you will need to run Home Assistant with the python flag `-W` or the environment variable `PYTHONWARNINGS` set to: +`ignore:Unverified HTTPS request is being made`