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.
This commit is contained in:
Piyush Jain 2023-08-09 17:08:48 -07:00 committed by GitHub
parent bbbd2b076f
commit 3b51817706
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,8 +18,8 @@
"\n",
"\n",
"host = \"<neptune-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)"
]