Skip to content

Commit

Permalink
Removed Leftover X Pack references opensearch-project#2517 (opensearc…
Browse files Browse the repository at this point in the history
…h-project#2638)

x-pack references in the code are removed as per the given files in opensearch-project#2517

Issue Resolved:
opensearch-project#2517

Signed-off-by: vimal K <vimalinfo10@gmail.com>
Signed-off-by: Arpit Bandejiya <abandeji@amazon.com>
  • Loading branch information
vimalMK authored and Arpit-Bandejiya committed Jan 13, 2023
1 parent 3493fe4 commit aaa3b5c
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 11 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
- [Multi DataSource] Address UX comments on index pattern management stack ([#2611](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/2611))
- [Multi DataSource] Apply get indices error handling in step index pattern ([#2652](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/2652))
- [Vis Builder] Last Updated Timestamp for visbuilder savedobject is getting Generated ([#2628](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/2628))
- Removed Leftover X Pack references ([#2638](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/2638))

### 🚞 Infrastructure

Expand Down
2 changes: 1 addition & 1 deletion packages/osd-pm/src/utils/validate_dependencies.ts
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ export async function validateDependencies(osd: OpenSearchDashboards, yarnLock:
const devOnlyProjectsInProduction = getDevOnlyProductionDepsTree(osd, 'opensearch-dashboards');
if (devOnlyProjectsInProduction) {
log.error(dedent`
Some of the packages in the production dependency chain for OpenSearch Dashboards and X-Pack are
Some of the packages in the production dependency chain for OpenSearch Dashboards are
flagged with "opensearchDashboards.devOnly" in their package.json. Please check changes made to
packages and their dependencies to ensure they don't end up in production.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -141,9 +141,7 @@ describe('IndexMigrator', () => {
},
});

await expect(new IndexMigrator(testOpts).migrate()).rejects.toThrow(
/use the X-Pack upgrade assistant/
);
await expect(new IndexMigrator(testOpts).migrate()).rejects.toThrow();
});

test('fails if root doc type is not "doc"', async () => {
Expand All @@ -164,9 +162,7 @@ describe('IndexMigrator', () => {
},
});

await expect(new IndexMigrator(testOpts).migrate()).rejects.toThrow(
/use the X-Pack upgrade assistant/
);
await expect(new IndexMigrator(testOpts).migrate()).rejects.toThrow();
});

test('retains unknown core field mappings from the previous index', async () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ function assertIsSupportedIndex(indexInfo: FullIndexInfo) {
if (!isV7Index) {
throw new Error(
`Index ${indexInfo.indexName} belongs to a version of OpenSearch Dashboards ` +
`that cannot be automatically migrated. Reset it or use the X-Pack upgrade assistant.`
`that cannot be automatically migrated. Reset it.`
);
}

Expand Down
2 changes: 1 addition & 1 deletion src/dev/notice/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ if (opts.help) {
(async function run() {
const path = resolve(REPO_ROOT, 'NOTICE.txt');
const newContent = await generateNoticeFromSource({
productName: 'OpenSearch Dashboards source code with OpenSearch Dashboards X-Pack source code',
productName: 'OpenSearch Dashboards source code',
directory: REPO_ROOT,
log,
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export const createEditConfig = () => ({
}),
textPre: i18n.translate('apmOss.tutorial.editConfig.textPre', {
defaultMessage:
"If you're using an X-Pack secured version of Elastic Stack, you must specify \
"If you're using a secured version of OpenSearch, you must specify \
credentials in the `apm-server.yml` config file.",
}),
commands: [
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/data/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ The `SearchSource` API is a convenient way to construct and run an OpenSearch se

#### Default Search Strategy

One benefit of using the low-level search API, is partial response support in X-Pack, allowing for a better and more responsive user experience.
One benefit of using the low-level search API is that it allows for a better and more responsive user experience with partial responses.
In OSS only the final result is returned.

```.ts
Expand Down

0 comments on commit aaa3b5c

Please sign in to comment.