graph-notebook
graph-notebook copied to clipboard
Disable SSL Verification
For rapid testing, the ability to disable SSL verification helps to prevent CertificateError
errors
{
'error': SSLError(MaxRetryError(
'HTTPSConnectionPool(host=\'xxxx.elb.us-east-1.amazonaws.com\', port=80): Max retries exceeded with url: /status (Caused by SSLError(CertificateError("hostname \'xxxx.elb.us-east-1.amazonaws.com\' doesn\'t match either of \'*.xxxx.us-east-1.neptune.amazonaws.com\', \'*.cluster-custom-xxxx.us-east-1.neptune.amazonaws.com\', \'*.cluster-ro-xxxx.us-east-1.neptune.amazonaws.com\', \'*.cluster-xxxx.us-east-1.neptune.amazonaws.com\'")))'
))
}
Ideally this would be added as a parameter to graph_notebook_config
's input:
{
"host": "xxx.elb.us-east-1.amazonaws.com",
"port": 80,
"auth_mode": "DEFAULT",
"load_from_s3_arn": "",
"ssl": true,
"verify": false,
"aws_region": "us-east-1"
}
Thank you for the suggestion, @neuxregime! We will look into implementing this feature.