Adjust timeout to align with MCP client timeouts

This commit is contained in:
7shi
2024-12-02 02:59:21 +09:00
parent 6d671ea0ff
commit 07e3697f27

View File

@@ -16,7 +16,7 @@ class Obsidian():
self.host = host
self.port = port
self.verify_ssl = verify_ssl
self.timeout = (5, 15)
self.timeout = (3, 6)
def get_base_url(self) -> str:
return f'{self.protocol}://{self.host}:{self.port}'