fixed initialization bug

Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com>
This commit is contained in:
Jürgen Eckel 2022-10-25 23:42:55 +02:00
parent 40b401f9df
commit c4370e3d00
No known key found for this signature in database
2 changed files with 3 additions and 3 deletions

View File

@ -17,8 +17,8 @@ logger = logging.getLogger(__name__)
class TarantoolDBConnection(DBConnection):
def __init__(
self,
host: str = "localhost",
port: int = 3303,
host: str = None,
port: int = None,
login: str = None,
password: str = None,
**kwargs,

View File

@ -95,7 +95,7 @@ class Config(metaclass=Singleton):
"tendermint": {
"host": "localhost",
"port": 26657,
"version": "v0.31.5", # look for __tm_supported_versions__
"version": "v0.34.15", # look for __tm_supported_versions__
},
"database": self.__private_database_map,
"log": {