#2551 upgrade ray to >2.9 and resolve logging error in db client

This commit is contained in:
Marek Wolan
2024-04-23 09:51:56 +01:00
parent 6060cbbc5b
commit 2b19c8c91d
2 changed files with 2 additions and 2 deletions

View File

@@ -39,7 +39,7 @@ dependencies = [
"tensorflow==2.12.0",
"typer[all]==0.9.0",
"pydantic==2.7.0",
"ray[rllib] == 2.8.0, < 3",
"ray[rllib] >= 2.9, < 3",
"ipywidgets"
]

View File

@@ -236,7 +236,7 @@ class DatabaseClient(Application):
if not connection_id:
msg = "Cannot run sql query, could not establish connection with the server."
self.parent.sys_log(msg)
self.parent.sys_log.error(msg)
return False
uuid = str(uuid4())