Skip to content

Commit

Permalink
bugfix(ChatData): ChatData (#695)
Browse files Browse the repository at this point in the history
1.empty table show bug fix;
  • Loading branch information
csunny authored Oct 19, 2023
2 parents 5282208 + 753e2fd commit 470ecf3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pilot/connections/manages/connection_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ def test_connect(self, db_info: DBConfig):
db_type = DBType.of_db_type(db_info.db_type)
connect_instance = self.get_cls_by_dbtype(db_type.value())
if db_type.is_file_db():
db_path = db_info.db_path
db_path = db_info.file_path
return connect_instance.from_file_path(db_path)
else:
db_name = db_info.db_name
Expand Down

0 comments on commit 470ecf3

Please sign in to comment.