Skip to content

Commit 11ca772

Browse files
authored
Disable backup complete ws message (#5452)
1 parent 42e704d commit 11ca772

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

supervisor/homeassistant/websocket.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
WSType.SUPERVISOR_EVENT: "2021.2.4",
3535
WSType.BACKUP_START: "2022.1.0",
3636
WSType.BACKUP_END: "2022.1.0",
37-
WSType.BACKUP_COMPLETE: "2024.11.99",
37+
WSType.BACKUP_COMPLETE: "2025.11.99",
3838
}
3939

4040
_LOGGER: logging.Logger = logging.getLogger(__name__)

tests/backups/test_manager.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1983,7 +1983,7 @@ async def test_partial_backup_complete_ws_message(
19831983
"""Test WS message notifies core when a partial backup is complete."""
19841984
coresys.core.state = CoreState.RUNNING
19851985
coresys.hardware.disk.get_disk_free_space = lambda x: 5000
1986-
ha_ws_client.ha_version = AwesomeVersion("2024.12.0")
1986+
ha_ws_client.ha_version = AwesomeVersion("2025.12.0")
19871987

19881988
# Test a partial backup
19891989
job, backup_task = coresys.jobs.schedule_job(
@@ -2015,7 +2015,7 @@ async def test_full_backup_complete_ws_message(
20152015
"""Test WS message notifies core when a full backup is complete."""
20162016
coresys.core.state = CoreState.RUNNING
20172017
coresys.hardware.disk.get_disk_free_space = lambda x: 5000
2018-
ha_ws_client.ha_version = AwesomeVersion("2024.12.0")
2018+
ha_ws_client.ha_version = AwesomeVersion("2025.12.0")
20192019

20202020
# Test a full backup
20212021
job, backup_task = coresys.jobs.schedule_job(

0 commit comments

Comments
 (0)