Re: [VOTE] Release Apache Commons JCS 3.2.1 based on rc1

2024-04-06 Thread Thomas Vandahl
Hi Gary,

> Am 06.04.2024 um 17:20 schrieb Gary D. Gregory :
> 
> Switching to origin/release-3.2.1 lets me run the default Maven goal (just 
> 'mvn') to successfully to completion!
> 

May I kindly ask for the debug log again? I'd like to know whether JCS can find 
a valid multicast interface even if the VPN is on.

Bye, Thomas 


-
To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
For additional commands, e-mail: dev-h...@commons.apache.org



Re: (commons-jcs) 03/03: Skip multicast tests when no multicast interface is available

2024-04-06 Thread Thomas Vandahl
Hi Gary,

> Am 06.04.2024 um 19:35 schrieb Gary Gregory :
> 
> This is where you want to use JUnit assumptions so you get visibility for
> skipped tests.
> 

Yes, I know. However, that does not work with the old JUnit3-style tests. I 
will fix this in the master branch where all tests already have been migrated.

Bye, Thomas 


-
To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
For additional commands, e-mail: dev-h...@commons.apache.org



Re: (commons-jcs) 03/03: Skip multicast tests when no multicast interface is available

2024-04-06 Thread Gary Gregory
This is where you want to use JUnit assumptions so you get visibility for
skipped tests.

Gary

On Sat, Apr 6, 2024, 12:54 PM  wrote:

> This is an automated email from the ASF dual-hosted git repository.
>
> tv pushed a commit to branch release-3.2.1
> in repository https://gitbox.apache.org/repos/asf/commons-jcs.git
>
> commit fe20ca994803b353c32fd0909621d822ee26263c
> Author: Thomas Vandahl 
> AuthorDate: Sat Apr 6 18:53:29 2024 +0200
>
> Skip multicast tests when no multicast interface is available
> ---
>  .../UDPDiscoverySenderEncryptedUnitTest.java   | 33 +++--
>  .../discovery/UDPDiscoverySenderUnitTest.java  | 83
> --
>  .../jcs3/utils/discovery/UDPDiscoveryUnitTest.java | 11 +++
>  3 files changed, 100 insertions(+), 27 deletions(-)
>
> diff --git
> a/commons-jcs-core/src/test/java/org/apache/commons/jcs3/utils/discovery/UDPDiscoverySenderEncryptedUnitTest.java
> b/commons-jcs-core/src/test/java/org/apache/commons/jcs3/utils/discovery/UDPDiscoverySenderEncryptedUnitTest.java
> index bb462ef3..492f1ca3 100644
> ---
> a/commons-jcs-core/src/test/java/org/apache/commons/jcs3/utils/discovery/UDPDiscoverySenderEncryptedUnitTest.java
> +++
> b/commons-jcs-core/src/test/java/org/apache/commons/jcs3/utils/discovery/UDPDiscoverySenderEncryptedUnitTest.java
> @@ -30,6 +30,7 @@ import java.util.concurrent.TimeUnit;
>  import java.util.concurrent.TimeoutException;
>
>  import
> org.apache.commons.jcs3.utils.discovery.UDPDiscoveryMessage.BroadcastType;
> +import org.apache.commons.jcs3.utils.net.HostNameUtil;
>  import org.apache.commons.jcs3.utils.serialization.EncryptingSerializer;
>
>  import junit.framework.TestCase;
> @@ -57,7 +58,6 @@ public class UDPDiscoverySenderEncryptedUnitTest
>
>  /** sender instance for tests */
>  private UDPDiscoverySender sender;
> -
>
>  /**
>   * Set up the receiver. Maybe better to just code sockets here? Set
> up the sender for sending
> @@ -73,7 +73,7 @@ public class UDPDiscoverySenderEncryptedUnitTest
>
>  EncryptingSerializer serializer = new EncryptingSerializer();
>  serializer.setPreSharedKey("my_key");
> -
> +
>  receiver = new UDPDiscoveryReceiver( null, null, ADDRESS, PORT );
>  receiver.setSerializer(serializer);
>  final Thread t = new Thread( receiver );
> @@ -104,6 +104,12 @@ public class UDPDiscoverySenderEncryptedUnitTest
>  public void testPassiveBroadcast()
>  throws Exception
>  {
> +if (HostNameUtil.getMulticastNetworkInterface() == null)
> +{
> +System.out.println("This machine does not support multicast");
> +return;
> +}
> +
>  // SETUP
>  final ArrayList cacheNames = new ArrayList<>();
>
> @@ -126,6 +132,12 @@ public class UDPDiscoverySenderEncryptedUnitTest
>  public void testRemoveBroadcast()
>  throws Exception
>  {
> +if (HostNameUtil.getMulticastNetworkInterface() == null)
> +{
> +System.out.println("This machine does not support multicast");
> +return;
> +}
> +
>  // SETUP
>  final ArrayList cacheNames = new ArrayList<>();
>
> @@ -148,6 +160,12 @@ public class UDPDiscoverySenderEncryptedUnitTest
>  public void testRequestBroadcast()
>  throws Exception
>  {
> +if (HostNameUtil.getMulticastNetworkInterface() == null)
> +{
> +System.out.println("This machine does not support multicast");
> +return;
> +}
> +
>  // DO WORK
>  sender.requestBroadcast();
>
> @@ -157,25 +175,26 @@ public class UDPDiscoverySenderEncryptedUnitTest
>  assertNotNull("message not received", msg);
>  assertEquals( "wrong message type", BroadcastType.REQUEST,
> msg.getMessageType() );
>
> -
> +
>  }
> -
> +
>  /**
>   * Wait for multicast message for 3 seconds
> - *
> + *
>   * @return the object message or null if nothing received within 3
> seconds
>   */
>  private UDPDiscoveryMessage getMessage() {
> ExecutorService executor = Executors.newCachedThreadPool();
>  Callable task = new Callable() {
> -   public Object call() throws IOException {
> +   @Override
> +public Object call() throws IOException {
>return receiver.waitForMessage();
> }
>  };
>  Future future = executor.submit(task);
>  try {
> Object obj = future.get(3, TimeUnit.SECONDS);
> -
> +
> assertTrue( "unexpected crap received", obj instanceof
> UDPDiscoveryMessage );
>
>  return (UDPDiscoveryMessage) obj;
> diff --git
> a/commons-jcs-core/src/test/java/org/apache/commons/jcs3/utils/discovery/UDPDiscoverySenderUnitTest.java
> b/commons-jcs-core/src/test/java/org/apache/commons/jcs3/utils/discovery/UDPDiscoverySenderUnitTest.java
> index 4e403f68..3cad2d7c 100644
> ---
> 

Re: [VOTE] Release Apache Commons JCS 3.2.1 based on rc1

2024-04-06 Thread Gary Gregory
Probably a job for JUnit assumptions.

Gary

On Sat, Apr 6, 2024, 12:17 PM Thomas Vandahl  wrote:

> Hi Gary,
>
> > Am 06.04.2024 um 17:48 schrieb Gary D. Gregory :
> >
> > And to confirm that VPN is the issue, I reconnected and got:
> >
> > [ERROR] Failures:
> > [ERROR]   UDPDiscoverySenderEncryptedUnitTest.testPassiveBroadcast:116
> message not received
> > [ERROR]   UDPDiscoverySenderEncryptedUnitTest.testRemoveBroadcast:138
> message not received
> > [ERROR]   UDPDiscoverySenderEncryptedUnitTest.testRequestBroadcast:157
> message not received
> >
> > So that's one for the release notes!
>
> Well, there are probably more cases where we cannot find a multicast
> capable interface. I'll rather try to dynamically skip the tests when no
> multicast is available.
>
> Bye, Thomas
>
>
> -
> To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
> For additional commands, e-mail: dev-h...@commons.apache.org
>
>


Re: [VOTE] Release Apache Commons JCS 3.2.1 based on rc1

2024-04-06 Thread Thomas Vandahl
Hi Gary,

> Am 06.04.2024 um 17:48 schrieb Gary D. Gregory :
> 
> And to confirm that VPN is the issue, I reconnected and got:
> 
> [ERROR] Failures:
> [ERROR]   UDPDiscoverySenderEncryptedUnitTest.testPassiveBroadcast:116 
> message not received
> [ERROR]   UDPDiscoverySenderEncryptedUnitTest.testRemoveBroadcast:138 message 
> not received
> [ERROR]   UDPDiscoverySenderEncryptedUnitTest.testRequestBroadcast:157 
> message not received
> 
> So that's one for the release notes!

Well, there are probably more cases where we cannot find a multicast capable 
interface. I'll rather try to dynamically skip the tests when no multicast is 
available.  

Bye, Thomas 


-
To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
For additional commands, e-mail: dev-h...@commons.apache.org



Re: [VOTE] Release Apache Commons JCS 3.2.1 based on rc1

2024-04-06 Thread Gary D. Gregory
And to confirm that VPN is the issue, I reconnected and got:

[ERROR] Failures:
[ERROR]   UDPDiscoverySenderEncryptedUnitTest.testPassiveBroadcast:116 message 
not received
[ERROR]   UDPDiscoverySenderEncryptedUnitTest.testRemoveBroadcast:138 message 
not received
[ERROR]   UDPDiscoverySenderEncryptedUnitTest.testRequestBroadcast:157 message 
not received

So that's one for the release notes!

Gary

On 2024/04/06 15:20:43 "Gary D. Gregory" wrote:
> Ah, I was on git master on Windows, which without the VPN, now hangs in:
> 
> [INFO] Running 
> org.apache.commons.jcs3.auxiliary.disk.indexed.IndexedDiskCacheConcurrentNoDeadLockUnitTest
> 
> Switching to origin/release-3.2.1 lets me run the default Maven goal (just 
> 'mvn') to successfully to completion!
> 
> Gary
> 
> On 2024/04/06 14:57:50 Thomas Vandahl wrote:
> > Hi Gary,
> > 
> > > Am 06.04.2024 um 15:07 schrieb Gary D. Gregory :
> > > 
> > > mvn test -Dtest=UDPDiscoverySenderEncryptedUnitTest
> > > 
> > > which failed with the log here: https://paste.apache.org/b4p09
> > 
> > Please check out from branch release-3.2.1 and try again. 
> > 
> > Bye, Thomas 
> > 
> > 
> > -
> > To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
> > For additional commands, e-mail: dev-h...@commons.apache.org
> > 
> > 
> 
> -
> To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
> For additional commands, e-mail: dev-h...@commons.apache.org
> 
> 

-
To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
For additional commands, e-mail: dev-h...@commons.apache.org



Re: [VOTE] Release Apache Commons JCS 3.2.1 based on rc1

2024-04-06 Thread Thomas Vandahl
Hi Gary,

> Am 06.04.2024 um 17:20 schrieb Gary D. Gregory :
> 
> Ah, I was on git master on Windows, which without the VPN, now hangs in:
> 
> [INFO] Running 
> org.apache.commons.jcs3.auxiliary.disk.indexed.IndexedDiskCacheConcurrentNoDeadLockUnitTest
> 

Thou shalt not run the whole test suite with debug log on. :-)

> Switching to origin/release-3.2.1 lets me run the default Maven goal (just 
> 'mvn') to successfully to completion!

Could you please send me the debug log of 

mvn test -Dtest=UDPDiscoverySenderEncryptedUnitTest

so that I can see what the HostNameUtil detects in your case?

Bye, Thomas 

Re: [VOTE] Release Apache Commons JCS 3.2.1 based on rc1

2024-04-06 Thread Gary D. Gregory
Ah, I was on git master on Windows, which without the VPN, now hangs in:

[INFO] Running 
org.apache.commons.jcs3.auxiliary.disk.indexed.IndexedDiskCacheConcurrentNoDeadLockUnitTest

Switching to origin/release-3.2.1 lets me run the default Maven goal (just 
'mvn') to successfully to completion!

Gary

On 2024/04/06 14:57:50 Thomas Vandahl wrote:
> Hi Gary,
> 
> > Am 06.04.2024 um 15:07 schrieb Gary D. Gregory :
> > 
> > mvn test -Dtest=UDPDiscoverySenderEncryptedUnitTest
> > 
> > which failed with the log here: https://paste.apache.org/b4p09
> 
> Please check out from branch release-3.2.1 and try again. 
> 
> Bye, Thomas 
> 
> 
> -
> To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
> For additional commands, e-mail: dev-h...@commons.apache.org
> 
> 

-
To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
For additional commands, e-mail: dev-h...@commons.apache.org



Re: [VOTE] Release Apache Commons JCS 3.2.1 based on rc1

2024-04-06 Thread Thomas Vandahl
Hi Gary,

> Am 06.04.2024 um 15:07 schrieb Gary D. Gregory :
> 
> mvn test -Dtest=UDPDiscoverySenderEncryptedUnitTest
> 
> which failed with the log here: https://paste.apache.org/b4p09

Please check out from branch release-3.2.1 and try again. 

Bye, Thomas 


-
To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
For additional commands, e-mail: dev-h...@commons.apache.org



Re: [VOTE] Release Apache Commons JCS 3.2.1 based on rc1

2024-04-06 Thread Thomas Vandahl
Hi Gary,

> Am 06.04.2024 um 15:07 schrieb Gary D. Gregory :
> 
> mvn test -Dtest=UDPDiscoverySenderEncryptedUnitTest
> 
> which failed with the log here: https://paste.apache.org/b4p09

Thanks for helping me to tackle this. I see that the network interface used for 
the test is a "Cisco AnyConnect Secure Mobility Client Virtual Miniport Adapter 
for Windows x64", IOW a VPN.

As far as Google can tell, this interface does not support multicast (see for 
example here: 
https://community.cisco.com/t5/vpn/anyconnect-multicast-support/td-p/4479734 
)

Could that be the problem?

Bye, Thomas 



Re: [VOTE] Release Apache Commons JCS 3.2.1 based on rc1

2024-04-06 Thread sebb
Another minor issue:
If you run 'mvn test' without first doing 'mvn clean', it fails with:

[ERROR]   JDBCDiskCacheUnitTest.testInitializePoolAccess_withPoolName:157
» SQL Table already exists: JCSTESTTABLE_INITIALIZEPOOLACCESS in
statement [CREATE CACHED TABLE JCSTESTTABLE_InitializePoolAccess]

Something is not cleaning up properly after a test.

Whilst this does not affect the main code, cleanup issues have been
known to affect the source bundle.
Should ideally be fixed if there is to be a new RC.

On Sat, 6 Apr 2024 at 14:09, Gary D. Gregory  wrote:
>
> Thomas,
>
> Running 'mvn clean verify -pl commons-jcs3-core' fails as usual (git master).
>
> The class UDPDiscoverySenderUnitTest is _excluded_ in the POM so it does not 
> even run.
>
> I edited logging.properties:
>
> handlers=java.util.logging.FileHandler
>
> .level = FINER
>
> java.util.logging.FileHandler.level=FINER
> java.util.logging.FileHandler.pattern=target/jcs-logging-%g.log
> java.util.logging.FileHandler.limit = 10
> java.util.logging.FileHandler.count = 2
> java.util.logging.FileHandler.append=true
> java.util.logging.FileHandler.formatter=java.util.logging.SimpleFormatter
> java.util.logging.SimpleFormatter.format=[%1$tF %1$tT] %3$s [%4$-7s] %5$s %n
>
> and ran:
>
> mvn test -Dtest=UDPDiscoverySenderEncryptedUnitTest
>
> which failed with the log here: https://paste.apache.org/b4p09
>
> TY,
> Gary
>
>
> On 2024/04/06 12:46:20 Thomas Vandahl wrote:
> > Hi Gary,
> >
> > > Am 06.04.2024 um 14:10 schrieb Gary D. Gregory :
> > >
> > > Hi Thomas,
> > >
> > > I ran:
> > >
> > > mvn test -Dtest=UDPDiscoverySenderUnitTest -X >\test\out.txt
> > >
> > > and killed it after 10 minutes since it never finished. I tried 3 times.
> >
> > Thanks. Not good.
> > Could you please repeat the test with the log levels in 
> > /commons-jcs3-core/src/test/test-conf/logging.properties set to FINER and 
> > send me the content of target/jcs-logging-0.log?
> >
> > Does this test run successfully when you run mvn clean verify for 
> > commons-jcs3-core?
> >
> > Bye, Thomas
> > -
> > To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
> > For additional commands, e-mail: dev-h...@commons.apache.org
> >
> >
>
> -
> To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
> For additional commands, e-mail: dev-h...@commons.apache.org
>

-
To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
For additional commands, e-mail: dev-h...@commons.apache.org



Re: [VOTE] Release Apache Commons JCS 3.2.1 based on rc1

2024-04-06 Thread Gary D. Gregory
Thomas,

Running 'mvn clean verify -pl commons-jcs3-core' fails as usual (git master). 

The class UDPDiscoverySenderUnitTest is _excluded_ in the POM so it does not 
even run.

I edited logging.properties:

handlers=java.util.logging.FileHandler

.level = FINER

java.util.logging.FileHandler.level=FINER
java.util.logging.FileHandler.pattern=target/jcs-logging-%g.log
java.util.logging.FileHandler.limit = 10
java.util.logging.FileHandler.count = 2
java.util.logging.FileHandler.append=true
java.util.logging.FileHandler.formatter=java.util.logging.SimpleFormatter
java.util.logging.SimpleFormatter.format=[%1$tF %1$tT] %3$s [%4$-7s] %5$s %n

and ran:

mvn test -Dtest=UDPDiscoverySenderEncryptedUnitTest

which failed with the log here: https://paste.apache.org/b4p09

TY,
Gary


On 2024/04/06 12:46:20 Thomas Vandahl wrote:
> Hi Gary,
> 
> > Am 06.04.2024 um 14:10 schrieb Gary D. Gregory :
> > 
> > Hi Thomas,
> > 
> > I ran:
> > 
> > mvn test -Dtest=UDPDiscoverySenderUnitTest -X >\test\out.txt
> > 
> > and killed it after 10 minutes since it never finished. I tried 3 times.
> 
> Thanks. Not good. 
> Could you please repeat the test with the log levels in 
> /commons-jcs3-core/src/test/test-conf/logging.properties set to FINER and 
> send me the content of target/jcs-logging-0.log?
> 
> Does this test run successfully when you run mvn clean verify for 
> commons-jcs3-core?
> 
> Bye, Thomas 
> -
> To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
> For additional commands, e-mail: dev-h...@commons.apache.org
> 
> 

-
To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
For additional commands, e-mail: dev-h...@commons.apache.org



Re: [VOTE] Release Apache Commons JCS 3.2.1 based on rc1

2024-04-06 Thread Thomas Vandahl
Hi Gary,

> Am 06.04.2024 um 14:10 schrieb Gary D. Gregory :
> 
> Hi Thomas,
> 
> I ran:
> 
> mvn test -Dtest=UDPDiscoverySenderUnitTest -X >\test\out.txt
> 
> and killed it after 10 minutes since it never finished. I tried 3 times.

Thanks. Not good. 
Could you please repeat the test with the log levels in 
/commons-jcs3-core/src/test/test-conf/logging.properties set to FINER and send 
me the content of target/jcs-logging-0.log?

Does this test run successfully when you run mvn clean verify for 
commons-jcs3-core?

Bye, Thomas 
-
To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
For additional commands, e-mail: dev-h...@commons.apache.org



Re: [VOTE] Release Apache Commons JCS 3.2.1 based on rc1

2024-04-06 Thread Gary D. Gregory
Hi Thomas,

I ran:

mvn test -Dtest=UDPDiscoverySenderUnitTest -X >\test\out.txt

and killed it after 10 minutes since it never finished. I tried 3 times.

See https://paste.apache.org/0d08b

TY,
Gary

On 2024/04/06 10:02:36 Thomas Vandahl wrote:
> Hi Gary,
> 
> > Am 05.04.2024 um 17:28 schrieb Gary D. Gregory :
> > 
> > [INFO] Running 
> > org.apache.commons.jcs3.utils.discovery.UDPDiscoverySenderEncryptedUnitTest
> > [ERROR] Tests run: 3, Failures: 3, Errors: 0, Skipped: 0, Time elapsed: 
> > 9.526 s <<< FAILURE! - in 
> > org.apache.commons.jcs3.utils.discovery.UDPDiscoverySenderEncryptedUnitTest
> > [ERROR] 
> > org.apache.commons.jcs3.utils.discovery.UDPDiscoverySenderEncryptedUnitTest.testRequestBroadcast
> >   Time elapsed: 3.36 s  <<< FAILURE!
> 
> Could you please check that the test 
> org.apache.commons.jcs3.utils.discovery.UDPDiscoverySenderUnitTest runs fine 
> on Windows under all circumstances? If so, we would need to look at 
> org.apache.commons.jcs3.utils.serialization.EncryptingSerializer because that 
> is the only difference between the two tests.
> 
> Bye, Thomas 
> 
> 
> -
> To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
> For additional commands, e-mail: dev-h...@commons.apache.org
> 
> 

-
To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
For additional commands, e-mail: dev-h...@commons.apache.org



Re: [VOTE] Release Apache Commons JCS 3.2.1 based on rc1

2024-04-06 Thread Thomas Vandahl
Hi Gary,

> Am 05.04.2024 um 17:28 schrieb Gary D. Gregory :
> 
> [INFO] Running 
> org.apache.commons.jcs3.utils.discovery.UDPDiscoverySenderEncryptedUnitTest
> [ERROR] Tests run: 3, Failures: 3, Errors: 0, Skipped: 0, Time elapsed: 9.526 
> s <<< FAILURE! - in 
> org.apache.commons.jcs3.utils.discovery.UDPDiscoverySenderEncryptedUnitTest
> [ERROR] 
> org.apache.commons.jcs3.utils.discovery.UDPDiscoverySenderEncryptedUnitTest.testRequestBroadcast
>   Time elapsed: 3.36 s  <<< FAILURE!

Could you please check that the test 
org.apache.commons.jcs3.utils.discovery.UDPDiscoverySenderUnitTest runs fine on 
Windows under all circumstances? If so, we would need to look at 
org.apache.commons.jcs3.utils.serialization.EncryptingSerializer because that 
is the only difference between the two tests.

Bye, Thomas 


-
To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
For additional commands, e-mail: dev-h...@commons.apache.org



[CANCEL][VOTE] Release Apache Commons JCS 3.2.1 based on rc1

2024-04-06 Thread Thomas Vandahl
I am cancelling the vote because of strange test failures in some environments.

Bye, Thomas 

> Am 04.04.2024 um 16:49 schrieb Thomas Vandahl :
> 
> Hi folks,
> 
> We have fixed a few bugs since Apache Commons JCS 3.2 was released, so I 
> would like to release Apache Commons JCS 3.2.1.
> 
> Apache Commons JCS 3.2.1 rc1 is available for review here:
>https://dist.apache.org/repos/dist/dev/commons/jcs/3.2.1-rc1 (svn revision 
> 68312)
> 
> The Git tag commons-jcs3-3.2.1-rc1 commit for this RC is 
> 0b20664b6c60b025cfe0e95c33e86f3239822a12 which you can browse here:
>
> https://gitbox.apache.org/repos/asf?p=commons-jcs.git;a=commit;h=0b20664b6c60b025cfe0e95c33e86f3239822a12
> You may checkout this tag using:
>git clone https://gitbox.apache.org/repos/asf/commons-jcs.git --branch 
> commons-jcs3-3.2.1-rc1 commons-jcs3-3.2.1-rc1
> 
> Maven artifacts are here:
>
> https://repository.apache.org/content/repositories/orgapachecommons-1712/org/apache/commons/commons-jcs3/3.2.1/
> 
> These are the artifacts and their hashes:
> 
> 5ea0cfd1ea5d17689ce35fd4a26ad104028b2b0d3209cf8c3d58d1a8e62c77442de95d51af278ad810a28117d0297725ded41b18553e05212dfc9e9db1dd185c
>   commons-jcs3-dist-3.2.1-bin.tar.gz
> ce7151767ebcf5ce08c9e91689ef1b240344b874963edc3042c0a6958e02deb95551aa9de1a8f63fd6e87198f179ad90501a0b76f96cf6c2c10cd546e867c8bf
>   commons-jcs3-dist-3.2.1-bin.zip
> 8abc08f18edf6fcd86d9fcb8834ef4584d6932a6a7dca8936b199b6aec3622e634c20f639fdb5cd1077d2492e1a8fd3dafb0ceb9a259127c3dfc3ec54d6cea1b
>   commons-jcs3-dist-3.2.1-src.tar.gz
> e7a2796bc07b9da4d8e5db0423baa758e0e139e8cdc35aa6d50e32cdfa9163b874eeedfd52e90c599049faa1963546109389fb967e60df8a0198a025a3d75869
>   commons-jcs3-dist-3.2.1-src.zip
> 
> I have tested this with ***'mvn clean install site'*** using:
> 
> Apache Maven 3.8.4 (9b656c72d54e5bacbed989b64718c159fe39b537)
> Java version: 1.8.0_311, vendor: Oracle Corporation, runtime: 
> /Library/Java/JavaVirtualMachines/jdk1.8.0_311.jdk/Contents/Home/jre
> Default locale: de_DE, platform encoding: UTF-8
> OS name: "mac os x", version: "10.16", arch: "x86_64", family: "mac"
> 
> Details of changes since 3.2 are in the release notes:
>
> https://dist.apache.org/repos/dist/dev/commons/jcs/3.2.1-rc1/RELEASE-NOTES.txt
>
> https://dist.apache.org/repos/dist/dev/commons/jcs/3.2.1-rc1/site/changes-report.html
> 
> Site:
>
> https://dist.apache.org/repos/dist/dev/commons/jcs/3.2.1-rc1/site/index.html
>(note some *relative* links are broken and the 3.2.1 directories are not 
> yet created - these will be OK once the site is deployed.)
> 
> JApiCmp Report (compared to 3.2):
>
> https://dist.apache.org/repos/dist/dev/commons/jcs/3.2.1-rc1/site/commons-jcs3-core/japicmp.html
> RAT Report:
>
> https://dist.apache.org/repos/dist/dev/commons/jcs/3.2.1-rc1/site/commons-jcs3-core/rat-report.html
> 
> KEYS:
>https://www.apache.org/dist/commons/KEYS
> 
> Please review the release candidate and vote.
> This vote will close no sooner than 72 hours from now.
> 
>  [ ] +1 Release these artifacts
>  [ ] +0 OK, but...
>  [ ] -0 OK, but really should fix...
>  [ ] -1 I oppose this release because...
> 
> Thank you,
> 
> Bye, Thomas 
> Release Manager (using key 88817402)
> 
> 
> 
> 
> -
> To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
> For additional commands, e-mail: dev-h...@commons.apache.org
> 


-
To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
For additional commands, e-mail: dev-h...@commons.apache.org



Re: [VOTE] Release Apache Commons JCS 3.2.1 based on rc1

2024-04-06 Thread Thomas Vandahl
Hi folks,

> Am 05.04.2024 um 23:26 schrieb Gary Gregory :
> 
> Wow, that's the first macOS failure for this type of issue. Bruno and I
> both see this on Windows.

Ok, let's try to fix this. Could you please run the affected test only with 
debug log and provide the log files to me? 
I'll cancel the vote now.

Bye, Thomas 
-
To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
For additional commands, e-mail: dev-h...@commons.apache.org