This commit is contained in:
DingZQ
2025-03-24 22:10:53 +08:00
parent 725cb7aa1e
commit 7e19ef83ec

View File

@@ -171,7 +171,7 @@ def query_pg_scada_info_non_realtime(name: str) -> None:
# 2025/03/23
def get_new_client() -> InfluxDBClient:
"""每次调用返回一个新的 InfluxDBClient 实例。"""
return InfluxDBClient(url=url, token=token, org=org_name, timeout=100*1000) # 100 seconds
return InfluxDBClient(url=url, token=token, org=org_name, timeout=600*1000) # 600 seconds
# 2025/02/01