Skip to content

Commit

Permalink
fix: skip NeptuneGraph name in service collector (#4550)
Browse files Browse the repository at this point in the history
  • Loading branch information
siddsriv committed Dec 14, 2023
1 parent adb08a9 commit 34f8f5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dist-tools/service-collector.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ var sanitizeRegex = /[^a-zA-Z0-9,-]/;

var serviceClasses = {};
Object.keys(AWS).forEach(function(name) {
if (AWS[name].serviceIdentifier) {
if (AWS[name].serviceIdentifier && name !== 'NeptuneGraph') {
serviceClasses[AWS[name].serviceIdentifier] = AWS[name];
}
});
Expand Down

0 comments on commit 34f8f5d

Please sign in to comment.