Skip to content

Commit

Permalink
Fixed the table aws_dynamodb_backup to return nil when backup does no…
Browse files Browse the repository at this point in the history
…t exist #1913 (#1914)
  • Loading branch information
ParthaI authored Sep 25, 2023
1 parent 8d75be5 commit 9817e2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aws/table_aws_dynamodb_backup.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ func tableAwsDynamoDBBackup(_ context.Context) *plugin.Table {
Get: &plugin.GetConfig{
KeyColumns: plugin.SingleColumn("arn"),
IgnoreConfig: &plugin.IgnoreConfig{
ShouldIgnoreErrorFunc: shouldIgnoreErrors([]string{"ValidationException"}),
ShouldIgnoreErrorFunc: shouldIgnoreErrors([]string{"ValidationException", "BackupNotFoundException"}),
},
Hydrate: getDynamodbBackup,
},
Expand Down

0 comments on commit 9817e2f

Please sign in to comment.