graph-notebook icon indicating copy to clipboard operation
graph-notebook copied to clipboard

Disable SSL Verification

Open neuxregime opened this issue 1 year ago • 1 comments

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"
}

neuxregime avatar Jul 20 '22 03:07 neuxregime

Thank you for the suggestion, @neuxregime! We will look into implementing this feature.

michaelnchin avatar Jul 21 '22 19:07 michaelnchin