diff --git a/.changes/next-release/bugfix-Neptune-Graph-5bb38964.json b/.changes/next-release/bugfix-Neptune-Graph-5bb38964.json new file mode 100644 index 0000000000..cccc6abc6d --- /dev/null +++ b/.changes/next-release/bugfix-Neptune-Graph-5bb38964.json @@ -0,0 +1,5 @@ +{ + "type": "bugfix", + "category": "Neptune Graph", + "description": "skips Neptune Graph from console repl" +} \ No newline at end of file diff --git a/scripts/console b/scripts/console index b9aead810a..d6b72544d8 100755 --- a/scripts/console +++ b/scripts/console @@ -107,7 +107,7 @@ repl.context.autoSend = true; for (var key in AWS) { var id = AWS[key].serviceIdentifier; if (id) { - if (id === 'cloudsearchdomain' || id === 'iotdata') continue; // this required an explicit endpoint + if (id === 'cloudsearchdomain' || id === 'iotdata' || id === 'neptunegraph') continue; // this required an explicit endpoint var svcClass = AWS[key]; var svc = new svcClass(defaultOptions);