Adjust slow add entities timeouts to handle slowest known case (#38876)
With this change, we should still be able to startup in under 10 minutes if something really goes wrong. The testing done in #38661 was used to determine these values.
This commit is contained in:
parent
68047f7c1a
commit
af5cb948a0
1 changed files with 2 additions and 2 deletions
|
@ -30,8 +30,8 @@ if TYPE_CHECKING:
|
|||
|
||||
SLOW_SETUP_WARNING = 10
|
||||
SLOW_SETUP_MAX_WAIT = 60
|
||||
SLOW_ADD_ENTITY_MAX_WAIT = 10 # Per Entity
|
||||
SLOW_ADD_MIN_TIMEOUT = 60
|
||||
SLOW_ADD_ENTITY_MAX_WAIT = 15 # Per Entity
|
||||
SLOW_ADD_MIN_TIMEOUT = 500
|
||||
|
||||
PLATFORM_NOT_READY_RETRIES = 10
|
||||
DATA_ENTITY_PLATFORM = "entity_platform"
|
||||
|
|
Loading…
Add table
Reference in a new issue