-
Notifications
You must be signed in to change notification settings - Fork 894
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Backport 2.x] [saved objects] enable deletion of saved objects by type if configured #6716
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## 2.x #6716 +/- ##
==========================================
- Coverage 67.42% 67.42% -0.01%
==========================================
Files 3442 3442
Lines 67802 67821 +19
Branches 11018 11022 +4
==========================================
+ Hits 45716 45726 +10
- Misses 19420 19427 +7
- Partials 2666 2668 +2
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
ciGroup3 fails on src/plugins/dashboard/public/application/components/dashboard_listing/dashboard_listing.test.tsx, which seems flaky. This PR has no change on dashboard. Also the snapshot update is not valid. Local can't reproduce. |
#6443) * [saved objects] enable deletion of saved objects by type if configured Adds the following settings: ``` migrations.delete.enabled migrations.delete.types ``` `unknown` types already exist but the purpose of this type is for plugins that are disabled. OpenSearch Dashboards gets confused when a plugin is not defining a saved object type but the saved object exists. This can occur when migrating from a non-OSD version and there exists non-compatiable saved objects. If OSD is failing to migrate an index because of a document, I can now configure OSD to delete types of saved objects that I specified because I know that these types should not be carried over. resolves: #1040 Signed-off-by: Kawika Avilla <kavilla414@gmail.com> * address comments Signed-off-by: Kawika Avilla <kavilla414@gmail.com> * Changeset file for PR #6443 created/updated --------- Signed-off-by: Kawika Avilla <kavilla414@gmail.com> Co-authored-by: opensearch-changeset-bot[bot] <154024398+opensearch-changeset-bot[bot]@users.noreply.github.com> (cherry picked from commit 7a8c281) Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
7d32df1
to
e676653
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
backport to 2.14 already merged in rebased this.
Signed-off-by: Qingyang(Abby) Hu <abigailhu2000@gmail.com>
Update branch and re-trigger all checks now |
Backport 7a8c281 from #6443.