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

SOLR-17284: Remove deprecated BlobRepository #2447

Merged
merged 7 commits into from
May 23, 2024
Merged
Show file tree
Hide file tree
Changes from 5 commits
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
367 changes: 0 additions & 367 deletions solr/core/src/java/org/apache/solr/core/BlobRepository.java

This file was deleted.

6 changes: 0 additions & 6 deletions solr/core/src/java/org/apache/solr/core/CoreContainer.java
Original file line number Diff line number Diff line change
Expand Up @@ -251,8 +251,6 @@ public JerseyAppHandlerCache getJerseyAppHandlerCache() {

private volatile String hostName;

private final BlobRepository blobRepository = new BlobRepository(this);

private volatile boolean asyncSolrCoreLoad;

protected volatile SecurityConfHandler securityConfHandler;
Expand Down Expand Up @@ -2319,10 +2317,6 @@ public SolrCore getCore(String name, UUID id) {
return core;
}

public BlobRepository getBlobRepository() {
return blobRepository;
}

/**
* If using asyncSolrCoreLoad=true, calling this after {@link #load()} will not return until all
* cores have finished loading.
Expand Down
Loading
Loading