1
0
mirror of https://github.com/thingsboard/thingsboard-gateway synced 2025-10-26 22:31:42 +08:00

Renamed sqlite storage file

This commit is contained in:
samson0v
2021-09-29 19:37:29 +03:00
parent eb8388ca0f
commit a5160eaad3
2 changed files with 3 additions and 3 deletions

View File

@@ -36,7 +36,7 @@ from thingsboard_gateway.tb_utility.tb_remote_shell import RemoteShell
from thingsboard_gateway.tb_utility.tb_updater import TBUpdater
from thingsboard_gateway.tb_utility.tb_utility import TBUtility
from thingsboard_gateway.storage.sqlite.storage_handler import StorageHandler
from thingsboard_gateway.storage.sqlite.sqlite_event_storage import SQLiteEventStorage
log = logging.getLogger('service')
main_handler = logging.handlers.MemoryHandler(-1)
@@ -110,7 +110,7 @@ class TBGatewayService:
self._event_storage_types = {
"memory": MemoryEventStorage,
"file": FileEventStorage,
"sqlite": StorageHandler,
"sqlite": SQLiteEventStorage,
}
self.__gateway_rpc_methods = {
"ping": self.__rpc_ping,