feat(Core/Updater): Add configurable shutdown delay on update exceptions (#23042)

This commit is contained in:
Andrew 2025-10-01 07:16:32 -03:00 committed by GitHub
parent a0a8187ea4
commit dbd4aaf065
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 13 additions and 0 deletions

View file

@ -343,6 +343,14 @@ Updates.AllowRehash = 1
Updates.CleanDeadRefMaxCount = 3
#
# Updates.ExceptionShutdownDelay
# Description: Time (in milliseconds) to wait before shutting down after a fatal exception (e.g. failed SQL update).
# Default: 10000 - 10 seconds
# 0 - Disabled (immediate shutdown)
Updates.ExceptionShutdownDelay = 10000
#
###################################################################################################