Skip to content

Commit

Permalink
feat: Update default Couchbase credentials in test_couchbasedb.py
Browse files Browse the repository at this point in the history
  • Loading branch information
teetangh committed Sep 19, 2024
1 parent 30bbab9 commit 1ae19f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/unit/vector_stores/test_couchbasedb.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
load_dotenv()

COUCHBASE_CONNECTION_STRING = os.getenv("COUCHBASE_CONNECTION_STRING", "couchbase://localhost")
COUCHBASE_USERNAME = os.getenv("COUCHBASE_USERNAME", "")
COUCHBASE_PASSWORD = os.getenv("COUCHBASE_PASSWORD", "")
COUCHBASE_USERNAME = os.getenv("COUCHBASE_USERNAME", "Administrator")
COUCHBASE_PASSWORD = os.getenv("COUCHBASE_PASSWORD", "password")
BUCKET_NAME = os.getenv("COUCHBASE_BUCKET_NAME", "graphrag-demo")
SCOPE_NAME = os.getenv("COUCHBASE_SCOPE_NAME", "shared")
COLLECTION_NAME = os.getenv("COUCHBASE_COLLECTION_NAME", "entity_description_embeddings")
Expand Down

0 comments on commit 1ae19f6

Please sign in to comment.