iamsanjay commented on PR #2876:
URL: https://github.com/apache/solr/pull/2876#issuecomment-2493848687
For S3Mock, the library is upgraded to support Jetty12. Test cases are
running now! For s3mock to deal in separate PR, I tried to maintain two
different set of jetty(10 & 12), but there were conflict errors. So for now I
just upgraded s3Mock libs to also use Jetty12.
Facing some issues with gcs-repository. Running successfully as Intellij
test but failing If run via gradlew.
```
./gradlew :solr:modules:gcs-repository:test --tests
"org.apache.solr.gcs.GCSIncrementalBackupTest" -Ptests.jvms=96
"-Ptests.jvmargs=-XX:TieredStopAtLevel=1 -XX:+UseParallelGC
-XX:ActiveProcessorCount=1 -XX:ReservedCodeCacheSize=120m"
-Ptests.seed=90E261AA14A5CB20 -Ptests.timeoutSuite=600000!
-Ptests.file.encoding=US-ASCII --debug
```
```
java.lang.IllegalStateException: Unable to locate keystore resource file in
classpath: SSLTestConfig.hostname-and-ip-missmatch.keystore
at __randomizedtesting.SeedInfo.seed([90E261AA14A5CB20]:0)
at org.apache.solr.util.SSLTestConfig.<init>(SSLTestConfig.java:121)
at org.apache.solr.util.SSLTestConfig.<init>(SSLTestConfig.java:83)
at
org.apache.solr.util.RandomizeSSL$SSLRandomizer.createSSLTestConfig(RandomizeSSL.java:129)
at
org.apache.solr.SolrTestCaseJ4.buildSSLConfig(SolrTestCaseJ4.java:475)
at
org.apache.solr.SolrTestCaseJ4.setupTestCases(SolrTestCaseJ4.java:298)
at
java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
at java.base/java.lang.reflect.Method.invoke(Method.java:580)
```
I did changed some code in SSLTestConfig
```
- trustStore = keyStore = Resource.newClassPathResource(resourceName);
+ trustStore = keyStore =
ResourceFactory.root().newSystemResource(resourceName);
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]