Forgotten pylint comment for os._exit

This commit is contained in:
Lee Miller 2023-10-20 03:31:51 +03:00
parent d03aa7c412
commit 9187e0c52d
Signed by untrusted user: lee.miller
GPG Key ID: 4F97A5EA88F4AB63

View File

@ -48,7 +48,7 @@ class objectProcessor(threading.Thread):
random.seed() random.seed()
if sql_ready.wait(sql_timeout) is False: if sql_ready.wait(sql_timeout) is False:
logger.fatal('SQL thread is not started in %s sec', sql_timeout) logger.fatal('SQL thread is not started in %s sec', sql_timeout)
os._exit(1) os._exit(1) # pylint: disable=protected-access
shared.reloadMyAddressHashes() shared.reloadMyAddressHashes()
shared.reloadBroadcastSendersForWhichImWatching() shared.reloadBroadcastSendersForWhichImWatching()
# It may be the case that the last time Bitmessage was running, # It may be the case that the last time Bitmessage was running,