Skip to content
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

[Saved Object Service] Adds Repository Factory Provider #4149

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Remove client parameter from SavedObjectsRepositoryOptions
Signed-off-by: Bandini Bhopi <bandinib@amazon.com>
bandinib-amzn committed Jun 5, 2023

Verified

This commit was created on github.com and signed with GitHub’s verified signature.
commit bf8ae4eac4c3a36761d239eb346d530d06e907fe
Original file line number Diff line number Diff line change
@@ -37,7 +37,6 @@ import {
} from '../../saved_objects_type_registry';
import { OpenSearchDashboardsRequest } from '../../../http';
import { ISavedObjectsRepository } from './repository';
import { OpenSearchClient } from '../../../opensearch';
import { IOpenSearchDashboardsMigrator } from '../../migrations';

/**
@@ -48,7 +47,6 @@ export interface SavedObjectsRepositoryOptions {
migrator: IOpenSearchDashboardsMigrator;
typeRegistry: SavedObjectTypeRegistry;
includedHiddenTypes: string[];
client?: OpenSearchClient;
}

/**