Skip to content

Commit

Permalink
OctoPrint add yaml config removal issue (home-assistant#97431)
Browse files Browse the repository at this point in the history
OctoPrint yaml config removal issue
  • Loading branch information
gjohansson-ST authored Jul 28, 2023
1 parent cd311f4 commit 594d988
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion homeassistant/components/octoprint/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,12 @@
CONF_VERIFY_SSL,
Platform,
)
from homeassistant.core import HomeAssistant
from homeassistant.core import DOMAIN as HOMEASSISTANT_DOMAIN, HomeAssistant
from homeassistant.exceptions import ConfigEntryAuthFailed
from homeassistant.helpers.aiohttp_client import async_get_clientsession
import homeassistant.helpers.config_validation as cv
from homeassistant.helpers.entity import DeviceInfo
from homeassistant.helpers.issue_registry import IssueSeverity, async_create_issue
from homeassistant.helpers.typing import ConfigType
from homeassistant.helpers.update_coordinator import DataUpdateCoordinator, UpdateFailed
from homeassistant.util import slugify as util_slugify
Expand Down Expand Up @@ -149,6 +150,20 @@ async def async_setup(hass: HomeAssistant, config: ConfigType) -> bool:
},
)
)
async_create_issue(
hass,
HOMEASSISTANT_DOMAIN,
f"deprecated_yaml_{DOMAIN}",
breaks_in_ha_version="2024.2.0",
is_fixable=False,
issue_domain=DOMAIN,
severity=IssueSeverity.WARNING,
translation_key="deprecated_yaml",
translation_placeholders={
"domain": DOMAIN,
"integration_title": "OctoPrint",
},
)

return True

Expand Down

0 comments on commit 594d988

Please sign in to comment.