Skip to content

Commit

Permalink
fix: let us override the remote typesense protocol
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
b1rger committed Feb 21, 2024
1 parent e977af1 commit aaa4440
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion viecpro_typesense/clients.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
'nodes': [{
'host': os.getenv("REMOTE_TYPESENSE_HOST"),
'port': os.getenv("REMOTE_TYPESENSE_PORT"),
'protocol': 'https'
'protocol': os.getenv("REMOTE_TYPESENSE_PROTO", 'https'),
}],
'api_key': os.getenv("REMOTE_TYPESENSE_API_KEY"),
'connection_timeout_seconds': 350
Expand Down

0 comments on commit aaa4440

Please sign in to comment.