Skip to content

Commit

Permalink
chore(console): skip neptunegraph from console repl (#4555)
Browse files Browse the repository at this point in the history
* chore(console): skip neptunegraph from console repl

* add changelog
  • Loading branch information
siddsriv committed Dec 19, 2023
1 parent 37f6c66 commit 1984f89
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changes/next-release/bugfix-Neptune-Graph-5bb38964.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"type": "bugfix",
"category": "Neptune Graph",
"description": "skips Neptune Graph from console repl"
}
2 changes: 1 addition & 1 deletion scripts/console
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 1984f89

Please sign in to comment.