forked from open-metadata/OpenMetadata
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix Dynamodb connection (open-metadata#11473)
--------- Co-authored-by: Onkar Ravgan <[email protected]> Co-authored-by: Nahuel Verdugo Revigliono <[email protected]>
- Loading branch information
1 parent
890433a
commit 65fc94a
Showing
4 changed files
with
36 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 14 additions & 14 deletions
28
openmetadata-service/src/main/resources/json/data/testConnections/database/dynamodb.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
{ | ||
"name": "DynamoDB", | ||
"fullyQualifiedName": "DynamoDB", | ||
"displayName": "DynamoDB Test Connection", | ||
"description": "This Test Connection validates the access against the database and basic metadata extraction of schemas and tables.", | ||
"steps": [ | ||
{ | ||
"name": "GetTables", | ||
"description": "List all the tables available to the user.", | ||
"errorMessage": "Failed to fetch tables, please validate the credentials & validate if user has access to fetch tables", | ||
"shortCircuit": true, | ||
"mandatory": true | ||
} | ||
] | ||
} | ||
"name": "DynamoDB", | ||
"fullyQualifiedName": "DynamoDB", | ||
"displayName": "DynamoDB Test Connection", | ||
"description": "This Test Connection validates the access against the database and basic metadata extraction of schemas and tables.", | ||
"steps": [ | ||
{ | ||
"name": "ListTables", | ||
"description": "List all the tables available to the user.", | ||
"errorMessage": "Failed to fetch tables, please validate the credentials & validate if user has access to list tables", | ||
"shortCircuit": true, | ||
"mandatory": true | ||
} | ||
] | ||
} |