Skip to content

Commit

Permalink
fix proxy.md
Browse files Browse the repository at this point in the history
Signed-off-by: jiangying <[email protected]>
  • Loading branch information
jiangying000 authored Oct 23, 2024
1 parent 9dd7bf7 commit 0e6b613
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions guides/proxy.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,10 @@
from opensearchpy import OpenSearch, RequestsHttpConnection

OpenSearch(
hosts=["htps://..."],
hosts=["https://..."],
use_ssl=True,
verify_certs=True,
connection_class=RequestsHttpConnection,
trust_env=True,
)
```
Expand All @@ -29,4 +30,4 @@ client = AsyncOpenSearch(
connection_class=AIOHttpConnection,
trust_env=True,
)
```
```

0 comments on commit 0e6b613

Please sign in to comment.