Notify webos timeout error fix (#11027)

* use smaller icon

* add timeout option

* remove default icon, remove timeout option

* add image again
This commit is contained in:
Mitko Masarliev 2018-01-02 04:19:49 +02:00 committed by Paulus Schoutsen
parent e2cec9b3ae
commit add89d6973

View File

@ -5,7 +5,6 @@ For more details about this platform, please refer to the documentation at
https://home-assistant.io/components/notify.webostv/ https://home-assistant.io/components/notify.webostv/
""" """
import logging import logging
import os
import voluptuous as vol import voluptuous as vol
@ -19,14 +18,11 @@ REQUIREMENTS = ['pylgtv==0.1.7']
_LOGGER = logging.getLogger(__name__) _LOGGER = logging.getLogger(__name__)
WEBOSTV_CONFIG_FILE = 'webostv.conf' WEBOSTV_CONFIG_FILE = 'webostv.conf'
HOME_ASSISTANT_ICON_PATH = os.path.join(os.path.dirname(__file__), '..',
'frontend', 'www_static', 'icons',
'favicon-1024x1024.png')
PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend({ PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend({
vol.Required(CONF_HOST): cv.string, vol.Required(CONF_HOST): cv.string,
vol.Optional(CONF_FILENAME, default=WEBOSTV_CONFIG_FILE): cv.string, vol.Optional(CONF_FILENAME, default=WEBOSTV_CONFIG_FILE): cv.string,
vol.Optional(CONF_ICON, default=HOME_ASSISTANT_ICON_PATH): cv.string vol.Optional(CONF_ICON): cv.string
}) })
@ -36,7 +32,8 @@ def get_service(hass, config, discovery_info=None):
from pylgtv import PyLGTVPairException from pylgtv import PyLGTVPairException
path = hass.config.path(config.get(CONF_FILENAME)) path = hass.config.path(config.get(CONF_FILENAME))
client = WebOsClient(config.get(CONF_HOST), key_file_path=path) client = WebOsClient(config.get(CONF_HOST), key_file_path=path,
timeout_connect=8)
if not client.is_registered(): if not client.is_registered():
try: try: