Hi, looking for a way to set a fail-fast timeout on connections to OpenSearch. I’ve tried setting timeout=5 from the client instantiation, but i’m still seeing 10 second exceptions, as set in
https://github.com/opensearch-project/opensearch-py/blob/main/opensearchpy/connection/base.py
from opensearchpy import OpenSearch
opensearch_client = OpenSearch(
...
timeout = 5
)