Add ConfigEntryNotReady exception to Plex (#32071)

pull/32211/head
jjlawren 2020-02-21 15:07:26 -06:00 committed by Paulus Schoutsen
parent 9dda44ffdd
commit f30ff31439
1 changed files with 2 additions and 1 deletions

View File

@ -19,6 +19,7 @@ from homeassistant.const import (
CONF_VERIFY_SSL,
EVENT_HOMEASSISTANT_STOP,
)
from homeassistant.exceptions import ConfigEntryNotReady
from homeassistant.helpers import config_validation as cv
from homeassistant.helpers.aiohttp_client import async_get_clientsession
from homeassistant.helpers.dispatcher import (
@ -129,7 +130,7 @@ async def async_setup_entry(hass, entry):
server_config[CONF_URL],
error,
)
return False
raise ConfigEntryNotReady
except (
plexapi.exceptions.BadRequest,
plexapi.exceptions.Unauthorized,