Skip to content

Commit

Permalink
Update vectordb_bench/backend/clients/memorydb/cli.py
Browse files Browse the repository at this point in the history
Co-authored-by: Jonathan S. Katz <[email protected]>
  • Loading branch information
baswanth09 and jkatz authored Jul 9, 2024
1 parent 5faae4f commit 99442bf
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions vectordb_bench/backend/clients/memorydb/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,7 @@ def MemoryDB(**parameters: Unpack[MemoryDBHNSWTypedDict]):
db=DB.MemoryDB,
db_config=MemoryDBConfig(
db_label=parameters["db_label"],
password=SecretStr(parameters["password"])
if parameters["password"]
else None,
password=SecretStr(parameters["password"]) if parameters["password"] else None,
host=SecretStr(parameters["host"]),
port=parameters["port"],
ssl=parameters["ssl"],
Expand Down

0 comments on commit 99442bf

Please sign in to comment.