Hue integration: update errors that should be supressed (#68337)

This commit is contained in:
Marcel van der Veldt 2022-03-19 21:27:04 +01:00 committed by GitHub
parent 5027e1bcff
commit 8187541d41
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 0 deletions

View File

@ -42,6 +42,14 @@ ALLOWED_ERRORS = [
'device (groupedLight) is "soft off", command (on) may not have effect', 'device (groupedLight) is "soft off", command (on) may not have effect',
"device (light) has communication issues, command (on) may not have effect", "device (light) has communication issues, command (on) may not have effect",
'device (light) is "soft off", command (on) may not have effect', 'device (light) is "soft off", command (on) may not have effect',
"device (grouped_light) has communication issues, command (.on) may not have effect",
'device (grouped_light) is "soft off", command (.on) may not have effect'
"device (grouped_light) has communication issues, command (.on.on) may not have effect",
'device (grouped_light) is "soft off", command (.on.on) may not have effect'
"device (light) has communication issues, command (.on) may not have effect",
'device (light) is "soft off", command (.on) may not have effect',
"device (light) has communication issues, command (.on.on) may not have effect",
'device (light) is "soft off", command (.on.on) may not have effect',
] ]

View File

@ -39,6 +39,10 @@ from .helpers import (
ALLOWED_ERRORS = [ ALLOWED_ERRORS = [
"device (light) has communication issues, command (on) may not have effect", "device (light) has communication issues, command (on) may not have effect",
'device (light) is "soft off", command (on) may not have effect', 'device (light) is "soft off", command (on) may not have effect',
"device (light) has communication issues, command (.on) may not have effect",
'device (light) is "soft off", command (.on) may not have effect',
"device (light) has communication issues, command (.on.on) may not have effect",
'device (light) is "soft off", command (.on.on) may not have effect',
] ]