remove unused log
This commit is contained in:
@@ -44,7 +44,7 @@ class OracleDB:
|
|||||||
self.increment = 1
|
self.increment = 1
|
||||||
logger.info(f"Using the label {self.workspace} for Oracle Graph as identifier")
|
logger.info(f"Using the label {self.workspace} for Oracle Graph as identifier")
|
||||||
if self.user is None or self.password is None:
|
if self.user is None or self.password is None:
|
||||||
raise ValueError("Missing database user or password in addon_params")
|
raise ValueError("Missing database user or password")
|
||||||
|
|
||||||
try:
|
try:
|
||||||
oracledb.defaults.fetch_lobs = False
|
oracledb.defaults.fetch_lobs = False
|
||||||
|
@@ -55,7 +55,7 @@ class PostgreSQLDB:
|
|||||||
|
|
||||||
if self.user is None or self.password is None or self.database is None:
|
if self.user is None or self.password is None or self.database is None:
|
||||||
raise ValueError(
|
raise ValueError(
|
||||||
"Missing database user, password, or database in addon_params"
|
"Missing database user, password, or database"
|
||||||
)
|
)
|
||||||
|
|
||||||
async def initdb(self):
|
async def initdb(self):
|
||||||
|
Reference in New Issue
Block a user