From 1984f89d11753a57075b4072cc77b6943aa1e27e Mon Sep 17 00:00:00 2001 From: sid <48153483+siddsriv@users.noreply.github.com> Date: Tue, 19 Dec 2023 13:27:15 -0500 Subject: [PATCH] chore(console): skip neptunegraph from console repl (#4555) * chore(console): skip neptunegraph from console repl * add changelog --- .changes/next-release/bugfix-Neptune-Graph-5bb38964.json | 5 +++++ scripts/console | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .changes/next-release/bugfix-Neptune-Graph-5bb38964.json 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);