mirror of
https://github.com/planetmint/planetmint.git
synced 2025-11-24 14:35:45 +00:00
fixed initialization bug
Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com>
This commit is contained in:
parent
40b401f9df
commit
c4370e3d00
@ -17,8 +17,8 @@ logger = logging.getLogger(__name__)
|
|||||||
class TarantoolDBConnection(DBConnection):
|
class TarantoolDBConnection(DBConnection):
|
||||||
def __init__(
|
def __init__(
|
||||||
self,
|
self,
|
||||||
host: str = "localhost",
|
host: str = None,
|
||||||
port: int = 3303,
|
port: int = None,
|
||||||
login: str = None,
|
login: str = None,
|
||||||
password: str = None,
|
password: str = None,
|
||||||
**kwargs,
|
**kwargs,
|
||||||
|
|||||||
@ -95,7 +95,7 @@ class Config(metaclass=Singleton):
|
|||||||
"tendermint": {
|
"tendermint": {
|
||||||
"host": "localhost",
|
"host": "localhost",
|
||||||
"port": 26657,
|
"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,
|
"database": self.__private_database_map,
|
||||||
"log": {
|
"log": {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user