Skip to content

Commit

Permalink
remove limitation to only using .kibana indices (#142739)
Browse files Browse the repository at this point in the history
  • Loading branch information
jloleysens authored Oct 5, 2022
1 parent db7daf6 commit cb33477
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,6 @@ export class ElasticsearchBlobStorageClient implements BlobStorageClient {
*/
private readonly uploadSemaphore = ElasticsearchBlobStorageClient.defaultSemaphore
) {
assert(
this.index.startsWith('.kibana'),
`Elasticsearch blob store index name must start with ".kibana", got ${this.index}.`
);
assert(this.uploadSemaphore, `No default semaphore provided and no semaphore was passed in.`);
}

Expand Down

0 comments on commit cb33477

Please sign in to comment.