Skip to content

Commit

Permalink
Merge pull request #5 from xenit-eu/DOCKER-431
Browse files Browse the repository at this point in the history
DOCKER-431 add support for older search service
  • Loading branch information
hechmi-dammak-xenit authored Mar 14, 2023
2 parents c1c3e91 + 8e257e5 commit d16ef4c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def copyPropertyValueIfExists(sourcePropertyName, targetPropertyName) {
}
}
subprojects {
def baseVersion = System.getenv("TAG_VERSION") ?: 'v0.0.4'
def baseVersion = System.getenv("TAG_VERSION") ?: 'v0.0.5'
version = baseVersion[1..baseVersion.length() - 1]


Expand Down
2 changes: 1 addition & 1 deletion solr-actuators/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ group = 'eu.xenit.solr-actuators'

ext {
solrVersion = '6.6.5'
assVersion = '2.0.0'
assVersion = '2.0.6'
}

java {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ private void checkMaxLag(boolean setInfo, SolrQueryResponse rsp,

private void checkReplicationHandler(boolean setInfo, SolrQueryResponse rsp) throws Exception {
SolrRequestHandler handler = core.getRequestHandler(ReplicationHandler.PATH);
ReplicationHandler replicationHandler = (ReplicationHandler) handler;
RequestHandlerBase replicationHandler = (RequestHandlerBase) handler;
NamedList<Object> query = new SimpleOrderedMap<>();
query.add(ReplicationHandler.COMMAND, ReplicationHandler.CMD_RESTORE_STATUS);
SolrQueryRequest replicationReq = new LocalSolrQueryRequest(core, query);
Expand Down

0 comments on commit d16ef4c

Please sign in to comment.