Skip to content

Commit

Permalink
fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
johannes94 committed Sep 7, 2023
1 parent 00c8bf8 commit 2e2d8bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fleetshard/pkg/central/cloudprovider/awsclient/rds.go
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ func (r *RDS) GetDBConnection(databaseID string) (postgres.DBConnection, error)
var awsErr awserr.Error
if errors.As(err, &awsErr) {
if awsErr.Code() == rds.ErrCodeDBClusterNotFoundFault {
err = errors.Join(cloudprovider.ErrDBBackupInProgress, err)
err = errors.Join(cloudprovider.ErrDBNotFound, err)
}
}

Expand Down

0 comments on commit 2e2d8bb

Please sign in to comment.