From 870bd42b0dcf30715073b3d283066280e6d6b2af Mon Sep 17 00:00:00 2001 From: Arun Prakash Date: Tue, 1 Oct 2024 03:06:30 +0530 Subject: [PATCH] docs: GremlinGraph Remove = in the URL (#26705) - **Description:** URL is appended with = which is not working - **Issue:** removing the = symbol makes the URL valid - **Twitter handle:** @arunprakash_com Co-authored-by: Erick Friis --- docs/docs/integrations/graphs/azure_cosmosdb_gremlin.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/integrations/graphs/azure_cosmosdb_gremlin.ipynb b/docs/docs/integrations/graphs/azure_cosmosdb_gremlin.ipynb index b71937014bc..83a7cf4ec25 100644 --- a/docs/docs/integrations/graphs/azure_cosmosdb_gremlin.ipynb +++ b/docs/docs/integrations/graphs/azure_cosmosdb_gremlin.ipynb @@ -80,7 +80,7 @@ "outputs": [], "source": [ "graph = GremlinGraph(\n", - " url=f\"=wss://{cosmosdb_name}.gremlin.cosmos.azure.com:443/\",\n", + " url=f\"wss://{cosmosdb_name}.gremlin.cosmos.azure.com:443/\",\n", " username=f\"/dbs/{cosmosdb_db_id}/colls/{cosmosdb_db_graph_id}\",\n", " password=cosmosdb_access_Key,\n", ")"