mirror of https://github.com/apache/lucene.git
SOLR-7073: rename the .jar files to .jar.bin so that the build scripts don't fail
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1665063 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
65b033712b
commit
45196378d3
|
@ -1,2 +0,0 @@
|
|||
AnyObjectId[55c835b234da9cfdd6161938475835af8e85c008] was removed in git history.
|
||||
Apache SVN contains full history.
|
Binary file not shown.
|
@ -1,2 +0,0 @@
|
|||
AnyObjectId[226a9dbceea9e942e9e91a33225cc97f400416a5] was removed in git history.
|
||||
Apache SVN contains full history.
|
Binary file not shown.
|
@ -21,7 +21,6 @@ package org.apache.solr.core;
|
|||
import org.apache.solr.client.solrj.SolrClient;
|
||||
import org.apache.solr.client.solrj.impl.HttpSolrClient;
|
||||
import org.apache.solr.cloud.AbstractFullDistribZkTestBase;
|
||||
import org.apache.solr.common.cloud.ZkStateReader;
|
||||
import org.apache.solr.handler.TestBlobHandler;
|
||||
import org.apache.solr.util.RESTfulServerProvider;
|
||||
import org.apache.solr.util.RestTestHarness;
|
||||
|
@ -35,7 +34,6 @@ import java.io.FileInputStream;
|
|||
import java.io.FileOutputStream;
|
||||
import java.io.IOException;
|
||||
import java.nio.ByteBuffer;
|
||||
import java.nio.charset.StandardCharsets;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
|
@ -157,10 +155,10 @@ public class TestDynamicLoading extends AbstractFullDistribZkTestBase {
|
|||
}
|
||||
ByteBuffer jar = null;
|
||||
|
||||
// jar = persistZip("/tmp/runtimelibs.jar", TestDynamicLoading.class, RuntimeLibReqHandler.class, RuntimeLibResponseWriter.class, RuntimeLibSearchComponent.class);
|
||||
// jar = persistZip("/tmp/runtimelibs.jar.bin", TestDynamicLoading.class, RuntimeLibReqHandler.class, RuntimeLibResponseWriter.class, RuntimeLibSearchComponent.class);
|
||||
// if(true) return;
|
||||
|
||||
jar = getFileContent("runtimecode/runtimelibs.jar");
|
||||
jar = getFileContent("runtimecode/runtimelibs.jar.bin");
|
||||
TestBlobHandler.postAndCheck(cloudClient, baseURL, blobName, jar, 1);
|
||||
|
||||
payload = "{\n" +
|
||||
|
@ -204,7 +202,7 @@ public class TestDynamicLoading extends AbstractFullDistribZkTestBase {
|
|||
"org.apache.solr.core.RuntimeLibSearchComponent", 10);
|
||||
compareValues(result, MemClassLoader.class.getName(), asList( "loader"));
|
||||
|
||||
jar = getFileContent("runtimecode/runtimelibs_v2.jar");
|
||||
jar = getFileContent("runtimecode/runtimelibs_v2.jar.bin");
|
||||
TestBlobHandler.postAndCheck(cloudClient, baseURL, blobName, jar, 2);
|
||||
payload = "{\n" +
|
||||
"'update-runtimelib' : { 'name' : 'colltest' ,'version':2}\n" +
|
||||
|
|
Loading…
Reference in New Issue