From 3b51817706c32fe0fe54e6af19243105a9cd61c6 Mon Sep 17 00:00:00 2001 From: Piyush Jain Date: Wed, 9 Aug 2023 17:08:48 -0700 Subject: [PATCH] Updating port and ssl use in sample notebook (#8995) ## Description This PR updates the sample notebook to use the default port (8182) and the ssl for the Neptune database connection. --- docs/extras/use_cases/graph/neptune_cypher_qa.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/extras/use_cases/graph/neptune_cypher_qa.ipynb b/docs/extras/use_cases/graph/neptune_cypher_qa.ipynb index 4b565e09333..68bb4e9e12a 100644 --- a/docs/extras/use_cases/graph/neptune_cypher_qa.ipynb +++ b/docs/extras/use_cases/graph/neptune_cypher_qa.ipynb @@ -18,8 +18,8 @@ "\n", "\n", "host = \"\"\n", - "port = 80\n", - "use_https = False\n", + "port = 8182\n", + "use_https = True\n", "\n", "graph = NeptuneGraph(host=host, port=port, use_https=use_https)" ]