mirror of
https://github.com/kvcache-ai/ktransformers.git
synced 2025-09-10 15:29:39 +00:00
Fix ktransformers-server flashinfer wrapper position arg issue;
Fix db position issue
This commit is contained in:
parent
203b853c75
commit
31677181c3
3 changed files with 7 additions and 2 deletions
|
@ -75,7 +75,7 @@ class Config(metaclass=Singleton):
|
|||
# db configs
|
||||
self.db_configs: dict = cfg.get("db", {})
|
||||
self.db_type = self.db_configs.get("type", "")
|
||||
self.db_host = Config.to_path(self.db_configs.get("host", ""))
|
||||
self.db_host = self.localstore_path
|
||||
self.db_port = self.db_configs.get("port", "")
|
||||
self.db_name = self.db_configs.get("database", "")
|
||||
self.db_pool_size = self.db_configs.get("pool_size")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue