Ensure bot shutdown before data checks #292_shutdown_procedure
This commit is contained in:
parent
00db6ac10f
commit
607b7d8aee
@ -70,8 +70,8 @@ class Application(DiscordBotApplicationABC):
|
|||||||
if self._feature_flags.get_flag(FeatureFlagsEnum.api_module):
|
if self._feature_flags.get_flag(FeatureFlagsEnum.api_module):
|
||||||
self._api.stop()
|
self._api.stop()
|
||||||
|
|
||||||
self._data_integrity.check_data_integrity(is_for_shutdown=True)
|
|
||||||
await self._bot.close()
|
await self._bot.close()
|
||||||
|
self._data_integrity.check_data_integrity(is_for_shutdown=True)
|
||||||
self._logger.info(__name__, f"Stopped {DiscordBotService.__name__}")
|
self._logger.info(__name__, f"Stopped {DiscordBotService.__name__}")
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
self._logger.error(__name__, "stop failed", e)
|
self._logger.error(__name__, "stop failed", e)
|
||||||
@ -79,4 +79,4 @@ class Application(DiscordBotApplicationABC):
|
|||||||
Console.write_line()
|
Console.write_line()
|
||||||
|
|
||||||
def is_restart(self):
|
def is_restart(self):
|
||||||
return True if self._configuration.get_configuration("IS_RESTART") == "true" else False #
|
return True if self._configuration.get_configuration("IS_RESTART") == "true" else False
|
||||||
|
Loading…
Reference in New Issue
Block a user