[jira] [Work logged] (CSV-148) CSVFormat.ignoreSurroundingSpaces is ignored when printing

2020-06-14 Thread ASF GitHub Bot (Jira)


 [ 
https://issues.apache.org/jira/browse/CSV-148?focusedWorklogId=445630=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-445630
 ]

ASF GitHub Bot logged work on CSV-148:
--

Author: ASF GitHub Bot
Created on: 15/Jun/20 02:33
Start Date: 15/Jun/20 02:33
Worklog Time Spent: 10m 
  Work Description: dota17 commented on pull request #70:
URL: https://github.com/apache/commons-csv/pull/70#issuecomment-643869952


   https://issues.apache.org/jira/projects/CSV/issues/CSV-148
   Add test cases for CSV-148 tickets on Jira, distinguish between 
withIgnoreSurroundingSapces() and withTrim()



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.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Issue Time Tracking
---

Worklog Id: (was: 445630)
Time Spent: 40m  (was: 0.5h)

> CSVFormat.ignoreSurroundingSpaces is ignored when printing
> --
>
> Key: CSV-148
> URL: https://issues.apache.org/jira/browse/CSV-148
> Project: Commons CSV
>  Issue Type: Bug
>  Components: Printer
>Affects Versions: 1.1
> Environment: JDK 1.7
>Reporter: Piotr Ciruk
>Priority: Minor
> Fix For: Review
>
> Attachments: commons-csv_CSV-148.patch, commons-csv_CSV-148.patch
>
>  Time Spent: 40m
>  Remaining Estimate: 0h
>
> It seems that {{CSVFormat}}'s property {{ignoreSurroundingSpaces}} is not 
> taken into consideration while printing out values using {{CSVPrinter}}.
> Given:
> {code}
> System.out.println(
>   CSVFormat.DEFAULT
>   .withIgnoreSurroundingSpaces(true)
>   .format("",
>   " ",
>   " Single space on the left",
>   "Single space on the right ",
>   " Single spaces on both sides ",
>   "   Multiple spaces on the left",
>   "Multiple spaces on the right",
>   "  Multiple spaces on both sides ")
> );
> {code}
> Actual result:
> {code}
> ""," "," Single space on the left","Single space on the right "," Single 
> spaces on both sides ","   Multiple spaces on the left","Multiple spaces on 
> the right","  Multiple spaces on both sides "
> {code}
> Expected result:
> {code}
> "","","Single space on the left","Single space on the right","Single spaces 
> on both sides","Multiple spaces on the left","Multiple spaces on the 
> right","Multiple spaces on both sides"
> {code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[GitHub] [commons-csv] dota17 commented on pull request #70: [CSV-148] Add testcases about withIgnoreSurroundingSpaces() and withTrim()

2020-06-14 Thread GitBox


dota17 commented on pull request #70:
URL: https://github.com/apache/commons-csv/pull/70#issuecomment-643869952


   https://issues.apache.org/jira/projects/CSV/issues/CSV-148
   Add test cases for CSV-148 tickets on Jira, distinguish between 
withIgnoreSurroundingSapces() and withTrim()



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.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [commons-lang] garydgregory merged pull request #555: Add binary compatibility check to Maven default goal

2020-06-14 Thread GitBox


garydgregory merged pull request #555:
URL: https://github.com/apache/commons-lang/pull/555


   



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.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [commons-csv] dota17 commented on pull request #69: Change JiraCsv164Test to JiraCsv154Test

2020-06-14 Thread GitBox


dota17 commented on pull request #69:
URL: https://github.com/apache/commons-csv/pull/69#issuecomment-643859014


   @garydgregory 
   Oh sorry, I will pay attention on it.



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.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[jira] [Comment Edited] (LANG-1571) Allow to pass Supplier arrays to getIfNull

2020-06-14 Thread Yeldos Tanikin (Jira)


[ 
https://issues.apache.org/jira/browse/LANG-1571?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17135285#comment-17135285
 ] 

Yeldos Tanikin edited comment on LANG-1571 at 6/14/20, 9:05 PM:


Hi, what do you think about this change, it will be compatible with previous 
one and allow us to pass a few suppliers and take the first not null result. 
Should it have a different name like getFirstIfNull?

can I take the task to implement? what should I do to start?

Sorry, I'm new here, maybe I should not create task before discuss with you, 
tell me what should I do If I'm not correct


was (Author: ytanikin):
Hi, can I take the task to implement? what should I do to start?

> Allow to pass Supplier arrays  to getIfNull
> ---
>
> Key: LANG-1571
> URL: https://issues.apache.org/jira/browse/LANG-1571
> Project: Commons Lang
>  Issue Type: Improvement
>Reporter: Yeldos Tanikin
>Priority: Major
>
> change 
> public static  T getIfNull(final T object, final Supplier 
> defaultSupplier) 
> to 
> public static  T getIfNull(final T object, final Supplier... suppliers)
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Updated] (LANG-1571) Allow to pass Supplier arrays to getIfNull

2020-06-14 Thread Yeldos Tanikin (Jira)


 [ 
https://issues.apache.org/jira/browse/LANG-1571?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Yeldos Tanikin updated LANG-1571:
-
Description: 
change 

public static  T getIfNull(final T object, final Supplier 
defaultSupplier) 

to 

public static  T getIfNull(final T object, final Supplier... suppliers)

 

  was:
change 

public static  T getIfNull(final T object, final Supplier 
defaultSupplier) 

to 

public static  T getIfNull(final T object, final Supplier... 
defaultSuppliers)

 


> Allow to pass Supplier arrays  to getIfNull
> ---
>
> Key: LANG-1571
> URL: https://issues.apache.org/jira/browse/LANG-1571
> Project: Commons Lang
>  Issue Type: Improvement
>Reporter: Yeldos Tanikin
>Priority: Major
>
> change 
> public static  T getIfNull(final T object, final Supplier 
> defaultSupplier) 
> to 
> public static  T getIfNull(final T object, final Supplier... suppliers)
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Comment Edited] (LANG-1571) Allow to pass Supplier arrays to getIfNull

2020-06-14 Thread Yeldos Tanikin (Jira)


[ 
https://issues.apache.org/jira/browse/LANG-1571?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17135285#comment-17135285
 ] 

Yeldos Tanikin edited comment on LANG-1571 at 6/14/20, 8:53 PM:


Hi, can I take the task to implement? what should I do to start?


was (Author: ytanikin):
Hi, can I take the task to implement? what should I do?

> Allow to pass Supplier arrays  to getIfNull
> ---
>
> Key: LANG-1571
> URL: https://issues.apache.org/jira/browse/LANG-1571
> Project: Commons Lang
>  Issue Type: Improvement
>Reporter: Yeldos Tanikin
>Priority: Major
>
> change 
> public static  T getIfNull(final T object, final Supplier 
> defaultSupplier) 
> to 
> public static  T getIfNull(final T object, final Supplier... 
> defaultSuppliers)
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (LANG-1571) allow to pass Supplier arrays to getIfNull

2020-06-14 Thread Yeldos Tanikin (Jira)


[ 
https://issues.apache.org/jira/browse/LANG-1571?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17135285#comment-17135285
 ] 

Yeldos Tanikin commented on LANG-1571:
--

Hi, can I take the task to implement? what should I do?

> allow to pass Supplier arrays  to getIfNull
> ---
>
> Key: LANG-1571
> URL: https://issues.apache.org/jira/browse/LANG-1571
> Project: Commons Lang
>  Issue Type: Improvement
>Reporter: Yeldos Tanikin
>Priority: Major
>
> change 
> public static  T getIfNull(final T object, final Supplier 
> defaultSupplier) 
> to 
> public static  T getIfNull(final T object, final Supplier... 
> defaultSuppliers)
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Updated] (LANG-1571) Allow to pass Supplier arrays to getIfNull

2020-06-14 Thread Yeldos Tanikin (Jira)


 [ 
https://issues.apache.org/jira/browse/LANG-1571?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Yeldos Tanikin updated LANG-1571:
-
Summary: Allow to pass Supplier arrays  to getIfNull  (was: allow to pass 
Supplier arrays  to getIfNull)

> Allow to pass Supplier arrays  to getIfNull
> ---
>
> Key: LANG-1571
> URL: https://issues.apache.org/jira/browse/LANG-1571
> Project: Commons Lang
>  Issue Type: Improvement
>Reporter: Yeldos Tanikin
>Priority: Major
>
> change 
> public static  T getIfNull(final T object, final Supplier 
> defaultSupplier) 
> to 
> public static  T getIfNull(final T object, final Supplier... 
> defaultSuppliers)
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Updated] (LANG-1571) allow to pass Supplier arrays to getIfNull

2020-06-14 Thread Yeldos Tanikin (Jira)


 [ 
https://issues.apache.org/jira/browse/LANG-1571?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Yeldos Tanikin updated LANG-1571:
-
Summary: allow to pass Supplier arrays  to getIfNull  (was: allow to pass 
arrays to getIfNull)

> allow to pass Supplier arrays  to getIfNull
> ---
>
> Key: LANG-1571
> URL: https://issues.apache.org/jira/browse/LANG-1571
> Project: Commons Lang
>  Issue Type: Improvement
>Reporter: Yeldos Tanikin
>Priority: Major
>
> change 
> public static  T getIfNull(final T object, final Supplier 
> defaultSupplier) 
> to 
> public static  T getIfNull(final T object, final Supplier... 
> defaultSuppliers)
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Created] (LANG-1571) allow to pass arrays to getIfNull

2020-06-14 Thread Yeldos Tanikin (Jira)
Yeldos Tanikin created LANG-1571:


 Summary: allow to pass arrays to getIfNull
 Key: LANG-1571
 URL: https://issues.apache.org/jira/browse/LANG-1571
 Project: Commons Lang
  Issue Type: Improvement
Reporter: Yeldos Tanikin


change 

public static  T getIfNull(final T object, final Supplier 
defaultSupplier) 

to 

public static  T getIfNull(final T object, final Supplier... 
defaultSuppliers)

 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Resolved] (LANG-1569) Add ArrayUtils.get(T[], index, T) to provide an out-of-bounds default value

2020-06-14 Thread Gary D. Gregory (Jira)


 [ 
https://issues.apache.org/jira/browse/LANG-1569?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Gary D. Gregory resolved LANG-1569.
---
Fix Version/s: 3.11
   Resolution: Fixed

[~ytanikin]

It's already in git master.

> Add ArrayUtils.get(T[], index, T) to provide an out-of-bounds default value
> ---
>
> Key: LANG-1569
> URL: https://issues.apache.org/jira/browse/LANG-1569
> Project: Commons Lang
>  Issue Type: New Feature
>Reporter: Gary D. Gregory
>Priority: Major
> Fix For: 3.11
>
>
> Add {{ T ArrayUtils.get(T[], index, T)}} to provide an out-of-bounds 
> default value.
> Also adds {{ T ArrayUtils.get(T[], index)}} to with a null default value.
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Comment Edited] (LANG-1569) Add ArrayUtils.get(T[], index, T) to provide an out-of-bounds default value

2020-06-14 Thread Yeldos Tanikin (Jira)


[ 
https://issues.apache.org/jira/browse/LANG-1569?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17135275#comment-17135275
 ] 

Yeldos Tanikin edited comment on LANG-1569 at 6/14/20, 8:03 PM:


Hi, I'd like to implement this task, what should I do to start?


was (Author: ytanikin):
Hi, I'd like to implement this task, what should I do?

> Add ArrayUtils.get(T[], index, T) to provide an out-of-bounds default value
> ---
>
> Key: LANG-1569
> URL: https://issues.apache.org/jira/browse/LANG-1569
> Project: Commons Lang
>  Issue Type: New Feature
>Reporter: Gary D. Gregory
>Priority: Major
>
> Add {{ T ArrayUtils.get(T[], index, T)}} to provide an out-of-bounds 
> default value.
> Also adds {{ T ArrayUtils.get(T[], index)}} to with a null default value.
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (LANG-1569) Add ArrayUtils.get(T[], index, T) to provide an out-of-bounds default value

2020-06-14 Thread Yeldos Tanikin (Jira)


[ 
https://issues.apache.org/jira/browse/LANG-1569?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17135275#comment-17135275
 ] 

Yeldos Tanikin commented on LANG-1569:
--

Hi, I'd like to implement this task, what should I do?

> Add ArrayUtils.get(T[], index, T) to provide an out-of-bounds default value
> ---
>
> Key: LANG-1569
> URL: https://issues.apache.org/jira/browse/LANG-1569
> Project: Commons Lang
>  Issue Type: New Feature
>Reporter: Gary D. Gregory
>Priority: Major
>
> Add {{ T ArrayUtils.get(T[], index, T)}} to provide an out-of-bounds 
> default value.
> Also adds {{ T ArrayUtils.get(T[], index)}} to with a null default value.
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Created] (MATH-1546) Ability to decrement values from Mean, Variance and related metrics

2020-06-14 Thread Gili (Jira)
Gili created MATH-1546:
--

 Summary: Ability to decrement values from Mean, Variance and 
related metrics
 Key: MATH-1546
 URL: https://issues.apache.org/jira/browse/MATH-1546
 Project: Commons Math
  Issue Type: Improvement
Reporter: Gili


Use-case: when calculating a running Mean, Variance users may change 
previously-selected values from X to Y. I expect to be able to decrement(X) 
then increment(Y).



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[GitHub] [commons-lang] coveralls edited a comment on pull request #555: add bc detect as discussed in mailing list.

2020-06-14 Thread GitBox


coveralls edited a comment on pull request #555:
URL: https://github.com/apache/commons-lang/pull/555#issuecomment-643784290


   
   [![Coverage 
Status](https://coveralls.io/builds/31443711/badge)](https://coveralls.io/builds/31443711)
   
   Coverage remained the same at 95.026% when pulling 
**09175c3d7424b5e508e61f35f1dc92b2e62b7323 on 
XenoAmess:add_japicmp_in_default_goal** into 
**9d1c7bc17c8344d751e1a5aaa8c94f4cd7118f73 on apache:master**.
   



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.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[jira] [Commented] (CRYPTO-148) Releasing Commons Crypto with AArch64 support

2020-06-14 Thread Gary D. Gregory (Jira)


[ 
https://issues.apache.org/jira/browse/CRYPTO-148?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17135253#comment-17135253
 ] 

Gary D. Gregory commented on CRYPTO-148:


As of 2020-06-14, the contents of the docx file are:
{noformat}
Document having build instructions for x86/AArch64 jar on x86 machine-

1)  Building jar for x86 on x86 machine (native compilation):
Just running "mvn install" will create the jar for commons-crypto.

2)  Building jar for AArch64 on x86 machine (cross compilation):
To cross compile commons-crypto for AArch64 machine on x86 machine, I have 
created a docker-compose.yaml and a Dockerfile and attached same here. We need 
to run 'cross-compile-aarch64' service written in docker-compose.yaml file to 
cross compile commons-crypto. It will create the jar file in ~/.m2 directory 
which can be configured to another directory as well via docker-compose.yaml 
file. Below are the steps to cross compile commons-crypto-
1) git clone https://github.com/apache/commons-crypto
2) cd commons-crypto
3) mkdir docker
4) copy docker-compose.yaml and Dockerfile file in "docker" directory.
5) docker-compose -f docker/docker-compose.yaml run cross-compile-aarch64
{noformat}

> Releasing Commons Crypto with AArch64 support
> -
>
> Key: CRYPTO-148
> URL: https://issues.apache.org/jira/browse/CRYPTO-148
> Project: Commons Crypto
>  Issue Type: Task
>  Components: Build
>Affects Versions: 1.1.0
> Environment: Linux, AArch64
>Reporter: odidev
>Priority: Major
>  Labels: Release
> Fix For: 1.1.0
>
> Attachments: Dockerfile, 
> build-instructions-apache-commons-crypto.docx, docker-compose.yaml
>
>
> Currently, Commons Crypto 1.0.0 is available in maven's repository which 
> doesn't have AArch64 support but Commons Crypto 1.1.0 look have AArch64 
> support. Can you please let me know if when it is getting released. 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[GitHub] [commons-lang] garydgregory commented on pull request #555: add bc detect as discussed in mailing list.

2020-06-14 Thread GitBox


garydgregory commented on pull request #555:
URL: https://github.com/apache/commons-lang/pull/555#issuecomment-643800206


   If you add japicmp from the default goal, then please remove clirr. Clirr is 
not Java 8 aware anyway.



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.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [commons-lang] garydgregory edited a comment on pull request #555: add bc detect as discussed in mailing list.

2020-06-14 Thread GitBox


garydgregory edited a comment on pull request #555:
URL: https://github.com/apache/commons-lang/pull/555#issuecomment-643800206


   If you add japicmp to the default goal, then please remove clirr. Clirr is 
not Java 8 aware anyway.



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.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[jira] [Closed] (JCS-170) [JCache] cache name can make JMX registration fail

2020-06-14 Thread Thomas Vandahl (Jira)


 [ 
https://issues.apache.org/jira/browse/JCS-170?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Thomas Vandahl closed JCS-170.
--

> [JCache] cache name can make JMX registration fail
> --
>
> Key: JCS-170
> URL: https://issues.apache.org/jira/browse/JCS-170
> Project: Commons JCS
>  Issue Type: Bug
>Reporter: Romain Manni-Bucau
>Assignee: Romain Manni-Bucau
>Priority: Major
> Fix For: jcs-2.1
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Closed] (JCS-171) Multiple CacheEventQueue.QProcessor spawned for the same cache region

2020-06-14 Thread Thomas Vandahl (Jira)


 [ 
https://issues.apache.org/jira/browse/JCS-171?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Thomas Vandahl closed JCS-171.
--

> Multiple CacheEventQueue.QProcessor spawned for the same cache region
> -
>
> Key: JCS-171
> URL: https://issues.apache.org/jira/browse/JCS-171
> Project: Commons JCS
>  Issue Type: Bug
>  Components: Composite Cache
>Affects Versions: jcs-2.0
>Reporter: Wiktor N
>Assignee: Thomas Vandahl
>Priority: Major
> Fix For: jcs-2.1
>
> Attachments: CacheEventQueue.patch, jcs-perf-test.zip
>
>
> I noticed that running on new version of JCS I get multiple 
> CacheEventQueue.QProcessor thread. They spawn from time to time.
> I've checked recent changes and changes few things in r1774925 look 
> suspicious:
> 1. In previous code we spawned a new thread in synchronized section. This got 
> us a guarantee, that there will be no two threads trying to spawn a new 
> thread in the same time. Maybe some locking is needed around thread creation?
> 2. QProcessor uses isAlive() method. But this is defined by Thread.isAlive() 
> while it should probably check for CacheEventQueue.this.isAlive()



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Closed] (JCS-178) client using RemoteCache are not working

2020-06-14 Thread Thomas Vandahl (Jira)


 [ 
https://issues.apache.org/jira/browse/JCS-178?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Thomas Vandahl closed JCS-178.
--

> client using RemoteCache are not working
> 
>
> Key: JCS-178
> URL: https://issues.apache.org/jira/browse/JCS-178
> Project: Commons JCS
>  Issue Type: Bug
>Reporter: Romain Manni-Bucau
>Assignee: Thomas Vandahl
>Priority: Major
> Fix For: jcs-2.2
>
>
> RemoteCacheNoWaitFacade is not usable cause of its constructor loop 
> (concurrent modification) leading to the remote cache not being usable.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Closed] (JCS-190) [JCACHE] listener onExpired callback not always called

2020-06-14 Thread Thomas Vandahl (Jira)


 [ 
https://issues.apache.org/jira/browse/JCS-190?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Thomas Vandahl closed JCS-190.
--

> [JCACHE] listener onExpired callback not always called
> --
>
> Key: JCS-190
> URL: https://issues.apache.org/jira/browse/JCS-190
> Project: Commons JCS
>  Issue Type: Bug
>Reporter: Romain Manni-Bucau
>Assignee: Romain Manni-Bucau
>Priority: Major
> Fix For: jcs-2.2.1
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Closed] (JCS-174) ClassLoaderAwareCache shouldnt impose the object type to be serializable

2020-06-14 Thread Thomas Vandahl (Jira)


 [ 
https://issues.apache.org/jira/browse/JCS-174?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Thomas Vandahl closed JCS-174.
--

> ClassLoaderAwareCache shouldnt impose the object type to be serializable
> 
>
> Key: JCS-174
> URL: https://issues.apache.org/jira/browse/JCS-174
> Project: Commons JCS
>  Issue Type: Bug
>Reporter: Romain Manni-Bucau
>Assignee: Romain Manni-Bucau
>Priority: Major
> Fix For: jcs-2.1
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Closed] (JCS-180) CacheInvocationContextImpl NPE if method doesnt have any argument

2020-06-14 Thread Thomas Vandahl (Jira)


 [ 
https://issues.apache.org/jira/browse/JCS-180?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Thomas Vandahl closed JCS-180.
--

> CacheInvocationContextImpl NPE if method doesnt have any argument
> -
>
> Key: JCS-180
> URL: https://issues.apache.org/jira/browse/JCS-180
> Project: Commons JCS
>  Issue Type: Bug
>Reporter: Romain Manni-Bucau
>Assignee: Romain Manni-Bucau
>Priority: Major
> Fix For: jcs-2.2
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Closed] (JCS-172) MaxLife element attribute causing cache region to stop responding

2020-06-14 Thread Thomas Vandahl (Jira)


 [ 
https://issues.apache.org/jira/browse/JCS-172?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Thomas Vandahl closed JCS-172.
--

> MaxLife element attribute causing cache region to stop responding
> -
>
> Key: JCS-172
> URL: https://issues.apache.org/jira/browse/JCS-172
> Project: Commons JCS
>  Issue Type: Bug
>Affects Versions: jcs-2.0-beta-2, jcs-2.0
>Reporter: Tom Schroeder
>Assignee: Thomas Vandahl
>Priority: Major
> Fix For: jcs-2.1
>
> Attachments: cache.ccf
>
>
> We are using a cache region to stage some content, and have been using the 
> MaxLife attribute to expire content after a certain amount of time.  This 
> seemed to work when using the jcs-2.0-beta-1 version.  However, after 
> upgrading our project to either the jcs-2.0-beta-2 or the jcs-2.0 versions, 
> our staging cache seems to stop retaining content after the system has been 
> up for the MaxLife time.  After that is seems that any content placed in our 
> stagedContent region is immediately expired.  Placing an item in the cache 
> with a CacheAccess.put() and then immediately trying to retrieve it with a 
> CacheAccess.get() returns null.  I have attached a copy of our cache 
> configuration file for reference.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Closed] (JCS-177) CompositeCacheManager leaks memory if CacheAccess.dipose is called

2020-06-14 Thread Thomas Vandahl (Jira)


 [ 
https://issues.apache.org/jira/browse/JCS-177?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Thomas Vandahl closed JCS-177.
--

> CompositeCacheManager leaks memory if CacheAccess.dipose is called
> --
>
> Key: JCS-177
> URL: https://issues.apache.org/jira/browse/JCS-177
> Project: Commons JCS
>  Issue Type: Bug
>  Components: Composite Cache
>Affects Versions: jcs-2.1
>Reporter: Ryan Fong
>Assignee: Thomas Vandahl
>Priority: Critical
> Fix For: jcs-2.2
>
> Attachments: jcs-177.patch, jcs-test.zip
>
>
> In JCS 2.1, The org.apache.commons.jcs.engine.control.CompositeCacheManager 
> holds onto a reference of CacheAccess in its caches map. If 
> CacheAccess.dispose is called, this reference is not cleaned up which results 
> in a memory leak.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Closed] (JCS-176) RemoteCacheNoWaitFacade constructor throws ConcurrentModificationException

2020-06-14 Thread Thomas Vandahl (Jira)


 [ 
https://issues.apache.org/jira/browse/JCS-176?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Thomas Vandahl closed JCS-176.
--

> RemoteCacheNoWaitFacade constructor throws ConcurrentModificationException
> --
>
> Key: JCS-176
> URL: https://issues.apache.org/jira/browse/JCS-176
> Project: Commons JCS
>  Issue Type: Bug
>  Components: RMI Remote Cache
>Affects Versions: jcs-2.1
>Reporter: Dan Griffith
>Priority: Major
> Fix For: jcs-2.2
>
>
> RemoteCacheNoWaitFacade constructor throws a ConcurrentModificationException 
> in line 73 attempting to add to the collection it is traversing in the 
> enhanced for loop.
> Exception is swallowed in the 
> org.apache.commons.jcs.engine.control.CompositeCacheConfigurator 
> parseAuxiliary() method which logs the statement "Could not instantiate 
> auxiliary cache named ...".
> This prevents client from communicating changes to the remote cache.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Closed] (JCS-179) org.apache.commons.jcs.auxiliary.remote.server.RemoteCacheServerFactory not able to start server

2020-06-14 Thread Thomas Vandahl (Jira)


 [ 
https://issues.apache.org/jira/browse/JCS-179?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Thomas Vandahl closed JCS-179.
--

> org.apache.commons.jcs.auxiliary.remote.server.RemoteCacheServerFactory not 
> able to start server
> 
>
> Key: JCS-179
> URL: https://issues.apache.org/jira/browse/JCS-179
> Project: Commons JCS
>  Issue Type: Bug
>  Components: RMI Remote Cache
>Affects Versions: jcs-2.1
> Environment: windows 7
>Reporter: Archer
>Assignee: Thomas Vandahl
>Priority: Major
>  Labels: easyfix
> Fix For: jcs-2.2
>
>
> The issue is on the 
> org.apache.commons.jcs.engine.control.CompositeCacheManager.java (configure 
> function).
> for some reason InputStream is = getClass().getResourceAsStream( propFile ) 
> is giving access error. After reviewing source code, I would like to question 
> why doing a read of the file again? Doesn't the class already have the the 
> same properties loaded already?
> steps to reproduce the issue:
> 1. created a window batch file to start the RemoteCacheServerFactory
>  "c:\Program Files\Java\jdk1.8.0_92\bin\java" -classpath 
> C:\Apache\jcs-2.1-bin\commons-jcs-core\commons-jcs-core-2.1.jar;C:\javalib\apache-commons\commons-logging.jar
>  org.apache.commons.jcs.auxiliary.remote.server.RemoteCacheServerFactory 
> cache.ccf
> getting the following error.
> Jun 16, 2017 2:47:05 PM 
> org.apache.commons.jcs.engine.control.CompositeCacheManager getUnconfiguredI
> INFO: Instance is null, returning unconfigured instance
> Jun 16, 2017 2:47:05 PM 
> org.apache.commons.jcs.engine.control.CompositeCacheManager configure
> INFO: Creating cache manager from config file: cache.ccf
> Exception in thread "main" java.rmi.RemoteException: Failed to read 
> configuration file [cache.ccf];
> org.apache.commons.jcs.access.exception.CacheException: Failed to 
> read configuration file [c
> at 
> org.apache.commons.jcs.auxiliary.remote.server.RemoteCacheServer.init(RemoteCacheServer.j
> at 
> org.apache.commons.jcs.auxiliary.remote.server.RemoteCacheServer.(RemoteCacheServer
> at 
> org.apache.commons.jcs.auxiliary.remote.server.RemoteCacheServerFactory.startup(RemoteCac
> at 
> org.apache.commons.jcs.auxiliary.remote.server.RemoteCacheServerFactory.startup(RemoteCac
> at 
> org.apache.commons.jcs.auxiliary.remote.server.RemoteCacheServerFactory.main(RemoteCacheS
> Caused by: org.apache.commons.jcs.access.exception.CacheException: Failed to 
> read configuration file
> at 
> org.apache.commons.jcs.engine.control.CompositeCacheManager.configure(CompositeCacheManag
> at 
> org.apache.commons.jcs.auxiliary.remote.server.RemoteCacheServer.createCacheManager(Remot
> at 
> org.apache.commons.jcs.auxiliary.remote.server.RemoteCacheServer.init(RemoteCacheServer.j



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Closed] (JCS-173) cdi integration doesnt find static annotations on interfaces of (java) proxies

2020-06-14 Thread Thomas Vandahl (Jira)


 [ 
https://issues.apache.org/jira/browse/JCS-173?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Thomas Vandahl closed JCS-173.
--

> cdi integration doesnt find static annotations on interfaces of (java) proxies
> --
>
> Key: JCS-173
> URL: https://issues.apache.org/jira/browse/JCS-173
> Project: Commons JCS
>  Issue Type: Improvement
>Reporter: Romain Manni-Bucau
>Assignee: Romain Manni-Bucau
>Priority: Major
> Fix For: jcs-2.2
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Closed] (JCS-175) Could not sync changes in distributed environment.

2020-06-14 Thread Thomas Vandahl (Jira)


 [ 
https://issues.apache.org/jira/browse/JCS-175?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Thomas Vandahl closed JCS-175.
--

> Could not sync changes in distributed environment.
> --
>
> Key: JCS-175
> URL: https://issues.apache.org/jira/browse/JCS-175
> Project: Commons JCS
>  Issue Type: Bug
>  Components: TCP Lateral Cache
>Affects Versions: jcs-2.0
> Environment: jdk1.8.0_112, jdk1.8.0_112
>Reporter: syed riazur rahman
>Assignee: Thomas Vandahl
>Priority: Blocker
> Fix For: jcs-2.2
>
> Attachments: cache.ccf, cache.ccf
>
>
> Configured JCS in two tomcat servers running on 8080 & 8090 ports.
> Server A could able to sync the changes to Sever B.
> But 
> Server B could not able to sync the changes to Server A.
> Pl, find the attached files for configuration on Server A & Server B.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Closed] (JCS-184) Unexpected dispose() in CompositeCacheManager.release()

2020-06-14 Thread Thomas Vandahl (Jira)


 [ 
https://issues.apache.org/jira/browse/JCS-184?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Thomas Vandahl closed JCS-184.
--

> Unexpected dispose() in CompositeCacheManager.release()
> ---
>
> Key: JCS-184
> URL: https://issues.apache.org/jira/browse/JCS-184
> Project: Commons JCS
>  Issue Type: Bug
>  Components: Composite Cache
>Affects Versions: jcs-2.2
>Reporter: at
>Assignee: Bruno P. Kinoshita
>Priority: Major
> Fix For: jcs-2.2.1
>
>
> If debug-logging is *not* enabled the return-statement is ignored and the 
> code falls-through to cache.dispose().
> See Line 739 in 
> http://svn.apache.org/viewvc/commons/proper/jcs/tags/commons-jcs-2.2/commons-jcs-core/src/main/java/org/apache/commons/jcs/engine/control/CompositeCacheManager.java?revision=1803806=markup



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Closed] (JCS-183) JCache CDI integration is slow

2020-06-14 Thread Thomas Vandahl (Jira)


 [ 
https://issues.apache.org/jira/browse/JCS-183?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Thomas Vandahl closed JCS-183.
--

> JCache CDI integration is slow
> --
>
> Key: JCS-183
> URL: https://issues.apache.org/jira/browse/JCS-183
> Project: Commons JCS
>  Issue Type: Bug
>Reporter: Romain Manni-Bucau
>Assignee: Romain Manni-Bucau
>Priority: Major
> Fix For: jcs-2.2.1
>
>
> JCache CDI integration uses too much reflection to be performant at runtime, 
> this task is about reducing it as much as possible



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Closed] (JCS-169) [JCache] Access Expiry not respected

2020-06-14 Thread Thomas Vandahl (Jira)


 [ 
https://issues.apache.org/jira/browse/JCS-169?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Thomas Vandahl closed JCS-169.
--

> [JCache] Access Expiry not respected
> 
>
> Key: JCS-169
> URL: https://issues.apache.org/jira/browse/JCS-169
> Project: Commons JCS
>  Issue Type: Bug
>Reporter: Romain Manni-Bucau
>Assignee: Romain Manni-Bucau
>Priority: Major
> Fix For: jcs-2.0
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Closed] (JCS-168) cdi/nocdi jcache jar doesnt contain the right META-INF/services/javax.enterprise.inject.spi.Extension file

2020-06-14 Thread Thomas Vandahl (Jira)


 [ 
https://issues.apache.org/jira/browse/JCS-168?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Thomas Vandahl closed JCS-168.
--

> cdi/nocdi jcache jar doesnt contain the right 
> META-INF/services/javax.enterprise.inject.spi.Extension file
> --
>
> Key: JCS-168
> URL: https://issues.apache.org/jira/browse/JCS-168
> Project: Commons JCS
>  Issue Type: Bug
>Affects Versions: jcs-2.0-beta-2
>Reporter: Romain Manni-Bucau
>Assignee: Romain Manni-Bucau
>Priority: Major
> Fix For: jcs-2.0
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (JCS-205) commons-jcs3-core-3.0-20200526.132410-4-sources.jar lacks META-INF/services/org.apache.commons.jcs3.log.LogFactory

2020-06-14 Thread Simon Legner (Jira)


[ 
https://issues.apache.org/jira/browse/JCS-205?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17135208#comment-17135208
 ] 

Simon Legner commented on JCS-205:
--

Great, thank you!

> commons-jcs3-core-3.0-20200526.132410-4-sources.jar lacks 
> META-INF/services/org.apache.commons.jcs3.log.LogFactory
> --
>
> Key: JCS-205
> URL: https://issues.apache.org/jira/browse/JCS-205
> Project: Commons JCS
>  Issue Type: Bug
>Affects Versions: jcs-3.0
>Reporter: Simon Legner
>Assignee: Thomas Vandahl
>Priority: Major
> Fix For: jcs-3.0
>
>
> The source JAR 
> https://repository.apache.org/content/repositories/snapshots/org/apache/commons/commons-jcs3-core/3.0-SNAPSHOT/commons-jcs3-core-3.0-20200526.132410-4-sources.jar
>  lacks the services file 
> {{META-INF/services/org.apache.commons.jcs3.log.LogFactory}}. Instead, the 
> file 
> {{/home/jenkins/jenkins-slave/workspace/commons-jcs/commons-jcs-core/target/classes/META-INF/services/org.apache.commons.jcs3.log.LogFactory}}
>  is present.
> JOSM bug: https://josm.openstreetmap.de/ticket/19335



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[GitHub] [commons-lang] coveralls commented on pull request #555: add bc detect as discussed in mailing list.

2020-06-14 Thread GitBox


coveralls commented on pull request #555:
URL: https://github.com/apache/commons-lang/pull/555#issuecomment-643784290


   
   [![Coverage 
Status](https://coveralls.io/builds/31442455/badge)](https://coveralls.io/builds/31442455)
   
   Coverage remained the same at 95.026% when pulling 
**2eee18d62ae9a2e6158c6649098eb0155aefdec5 on 
XenoAmess:add_japicmp_in_default_goal** into 
**9d1c7bc17c8344d751e1a5aaa8c94f4cd7118f73 on apache:master**.
   



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.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [commons-lang] XenoAmess opened a new pull request #555: add bc detect as discussed in mailing list.

2020-06-14 Thread GitBox


XenoAmess opened a new pull request #555:
URL: https://github.com/apache/commons-lang/pull/555


   by changing defaultGoal in pom.xml



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.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[jira] [Resolved] (JCS-205) commons-jcs3-core-3.0-20200526.132410-4-sources.jar lacks META-INF/services/org.apache.commons.jcs3.log.LogFactory

2020-06-14 Thread Thomas Vandahl (Jira)


 [ 
https://issues.apache.org/jira/browse/JCS-205?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Thomas Vandahl resolved JCS-205.

Fix Version/s: jcs-3.0
 Assignee: Thomas Vandahl
   Resolution: Fixed

Fixed in master

> commons-jcs3-core-3.0-20200526.132410-4-sources.jar lacks 
> META-INF/services/org.apache.commons.jcs3.log.LogFactory
> --
>
> Key: JCS-205
> URL: https://issues.apache.org/jira/browse/JCS-205
> Project: Commons JCS
>  Issue Type: Bug
>Affects Versions: jcs-3.0
>Reporter: Simon Legner
>Assignee: Thomas Vandahl
>Priority: Major
> Fix For: jcs-3.0
>
>
> The source JAR 
> https://repository.apache.org/content/repositories/snapshots/org/apache/commons/commons-jcs3-core/3.0-SNAPSHOT/commons-jcs3-core-3.0-20200526.132410-4-sources.jar
>  lacks the services file 
> {{META-INF/services/org.apache.commons.jcs3.log.LogFactory}}. Instead, the 
> file 
> {{/home/jenkins/jenkins-slave/workspace/commons-jcs/commons-jcs-core/target/classes/META-INF/services/org.apache.commons.jcs3.log.LogFactory}}
>  is present.
> JOSM bug: https://josm.openstreetmap.de/ticket/19335



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (CRYPTO-148) Releasing Commons Crypto with AArch64 support

2020-06-14 Thread odidev (Jira)


[ 
https://issues.apache.org/jira/browse/CRYPTO-148?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17135187#comment-17135187
 ] 

odidev commented on CRYPTO-148:
---

A gentle reminder! Can you please have a look at this issue. Thanks.

 

> Releasing Commons Crypto with AArch64 support
> -
>
> Key: CRYPTO-148
> URL: https://issues.apache.org/jira/browse/CRYPTO-148
> Project: Commons Crypto
>  Issue Type: Task
>  Components: Build
>Affects Versions: 1.1.0
> Environment: Linux, AArch64
>Reporter: odidev
>Priority: Major
>  Labels: Release
> Fix For: 1.1.0
>
> Attachments: Dockerfile, 
> build-instructions-apache-commons-crypto.docx, docker-compose.yaml
>
>
> Currently, Commons Crypto 1.0.0 is available in maven's repository which 
> doesn't have AArch64 support but Commons Crypto 1.1.0 look have AArch64 
> support. Can you please let me know if when it is getting released. 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Resolved] (LANG-1547) Minor improvements

2020-06-14 Thread Jin Xu (Jira)


 [ 
https://issues.apache.org/jira/browse/LANG-1547?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jin Xu resolved LANG-1547.
--
Resolution: Fixed

Thanks [~ggregory]

> Minor improvements
> --
>
> Key: LANG-1547
> URL: https://issues.apache.org/jira/browse/LANG-1547
> Project: Commons Lang
>  Issue Type: Improvement
>Reporter: Jin Xu
>Priority: Minor
>  Time Spent: 2h 20m
>  Remaining Estimate: 0h
>
> original pr :
> [https://github.com/apache/commons-lang/pull/533|https://github.com/apache/commons-lang/pull/536]
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (LANG-1567) Javadoc error in EqualsBuilder.setTestRecursive()

2020-06-14 Thread Gary D. Gregory (Jira)


[ 
https://issues.apache.org/jira/browse/LANG-1567?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17135166#comment-17135166
 ] 

Gary D. Gregory commented on LANG-1567:
---

Waiting for PR

> Javadoc error in EqualsBuilder.setTestRecursive()
> -
>
> Key: LANG-1567
> URL: https://issues.apache.org/jira/browse/LANG-1567
> Project: Commons Lang
>  Issue Type: Bug
>  Components: lang.builder.*
>Affects Versions: 3.10
>Reporter: Miguel Munoz
>Priority: Trivial
>  Labels: patch
> Attachments: 
> (doc)_correct_javadocs_for_setTestRecursive(),_add_javadoc_links.patch
>
>   Original Estimate: 0h
>  Remaining Estimate: 0h
>
> The setTestRecursive() javadocs were copied from setTestTransients() and not 
> rewritten.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Reopened] (LANG-1567) Javadoc error in EqualsBuilder.setTestRecursive()

2020-06-14 Thread Gary D. Gregory (Jira)


 [ 
https://issues.apache.org/jira/browse/LANG-1567?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Gary D. Gregory reopened LANG-1567:
---

> Javadoc error in EqualsBuilder.setTestRecursive()
> -
>
> Key: LANG-1567
> URL: https://issues.apache.org/jira/browse/LANG-1567
> Project: Commons Lang
>  Issue Type: Bug
>  Components: lang.builder.*
>Affects Versions: 3.10
>Reporter: Miguel Munoz
>Priority: Trivial
>  Labels: patch
> Attachments: 
> (doc)_correct_javadocs_for_setTestRecursive(),_add_javadoc_links.patch
>
>   Original Estimate: 0h
>  Remaining Estimate: 0h
>
> The setTestRecursive() javadocs were copied from setTestTransients() and not 
> rewritten.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (LANG-1547) Minor improvements

2020-06-14 Thread Gary D. Gregory (Jira)


[ 
https://issues.apache.org/jira/browse/LANG-1547?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17135163#comment-17135163
 ] 

Gary D. Gregory commented on LANG-1547:
---

Subtasks complete. Please review and close.

 

> Minor improvements
> --
>
> Key: LANG-1547
> URL: https://issues.apache.org/jira/browse/LANG-1547
> Project: Commons Lang
>  Issue Type: Improvement
>Reporter: Jin Xu
>Priority: Minor
>  Time Spent: 2h 20m
>  Remaining Estimate: 0h
>
> original pr :
> [https://github.com/apache/commons-lang/pull/533|https://github.com/apache/commons-lang/pull/536]
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Resolved] (LANG-1557) Change a Pattern to a static final field, for not letting it compile each time the function invoked.

2020-06-14 Thread Gary D. Gregory (Jira)


 [ 
https://issues.apache.org/jira/browse/LANG-1557?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Gary D. Gregory resolved LANG-1557.
---
Fix Version/s: 3.11
   Resolution: Fixed

> Change a Pattern to a static final field, for not letting it compile each 
> time the function invoked.
> 
>
> Key: LANG-1557
> URL: https://issues.apache.org/jira/browse/LANG-1557
> Project: Commons Lang
>  Issue Type: Sub-task
>Reporter: Jin Xu
>Priority: Minor
> Fix For: 3.11
>
>  Time Spent: 50m
>  Remaining Estimate: 0h
>
> [https://github.com/apache/commons-lang/pull/542]



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Updated] (LANG-1557) Change a Pattern to a static final field, for not letting it compile each time the function invoked.

2020-06-14 Thread Gary D. Gregory (Jira)


 [ 
https://issues.apache.org/jira/browse/LANG-1557?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Gary D. Gregory updated LANG-1557:
--
Summary: Change a Pattern to a static final field, for not letting it 
compile each time the function invoked.  (was: change a Pattern to a static 
final field, for not letting it compile each time the function invoked.)

> Change a Pattern to a static final field, for not letting it compile each 
> time the function invoked.
> 
>
> Key: LANG-1557
> URL: https://issues.apache.org/jira/browse/LANG-1557
> Project: Commons Lang
>  Issue Type: Sub-task
>Reporter: Jin Xu
>Priority: Minor
>  Time Spent: 50m
>  Remaining Estimate: 0h
>
> [https://github.com/apache/commons-lang/pull/542]



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Work logged] (LANG-1557) change a Pattern to a static final field, for not letting it compile each time the function invoked.

2020-06-14 Thread ASF GitHub Bot (Jira)


 [ 
https://issues.apache.org/jira/browse/LANG-1557?focusedWorklogId=445570=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-445570
 ]

ASF GitHub Bot logged work on LANG-1557:


Author: ASF GitHub Bot
Created on: 14/Jun/20 13:47
Start Date: 14/Jun/20 13:47
Worklog Time Spent: 10m 
  Work Description: garydgregory merged pull request #542:
URL: https://github.com/apache/commons-lang/pull/542


   



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.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Issue Time Tracking
---

Worklog Id: (was: 445570)
Time Spent: 50m  (was: 40m)

> change a Pattern to a static final field, for not letting it compile each 
> time the function invoked.
> 
>
> Key: LANG-1557
> URL: https://issues.apache.org/jira/browse/LANG-1557
> Project: Commons Lang
>  Issue Type: Sub-task
>Reporter: Jin Xu
>Priority: Minor
>  Time Spent: 50m
>  Remaining Estimate: 0h
>
> [https://github.com/apache/commons-lang/pull/542]



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[GitHub] [commons-lang] garydgregory merged pull request #542: [LANG-1557] Change a Pattern to a static final field, for not letting it compile each time the function invoked.

2020-06-14 Thread GitBox


garydgregory merged pull request #542:
URL: https://github.com/apache/commons-lang/pull/542


   



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.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[jira] [Resolved] (LANG-1565) Change removeLastFieldSeparator to use endsWith

2020-06-14 Thread Gary D. Gregory (Jira)


 [ 
https://issues.apache.org/jira/browse/LANG-1565?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Gary D. Gregory resolved LANG-1565.
---
Fix Version/s: 3.11
   Resolution: Fixed

> Change removeLastFieldSeparator to use endsWith
> ---
>
> Key: LANG-1565
> URL: https://issues.apache.org/jira/browse/LANG-1565
> Project: Commons Lang
>  Issue Type: Sub-task
>Reporter: Jin Xu
>Priority: Minor
> Fix For: 3.11
>
>  Time Spent: 50m
>  Remaining Estimate: 0h
>
> [https://github.com/apache/commons-lang/pull/550]



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Updated] (LANG-1565) Change removeLastFieldSeparator to use endsWith

2020-06-14 Thread Gary D. Gregory (Jira)


 [ 
https://issues.apache.org/jira/browse/LANG-1565?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Gary D. Gregory updated LANG-1565:
--
Summary: Change removeLastFieldSeparator to use endsWith  (was: change 
removeLastFieldSeparator to use endsWith)

> Change removeLastFieldSeparator to use endsWith
> ---
>
> Key: LANG-1565
> URL: https://issues.apache.org/jira/browse/LANG-1565
> Project: Commons Lang
>  Issue Type: Sub-task
>Reporter: Jin Xu
>Priority: Minor
>  Time Spent: 50m
>  Remaining Estimate: 0h
>
> [https://github.com/apache/commons-lang/pull/550]



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Work logged] (LANG-1565) change removeLastFieldSeparator to use endsWith

2020-06-14 Thread ASF GitHub Bot (Jira)


 [ 
https://issues.apache.org/jira/browse/LANG-1565?focusedWorklogId=445569=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-445569
 ]

ASF GitHub Bot logged work on LANG-1565:


Author: ASF GitHub Bot
Created on: 14/Jun/20 13:44
Start Date: 14/Jun/20 13:44
Worklog Time Spent: 10m 
  Work Description: garydgregory merged pull request #550:
URL: https://github.com/apache/commons-lang/pull/550


   



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.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Issue Time Tracking
---

Worklog Id: (was: 445569)
Time Spent: 50m  (was: 40m)

> change removeLastFieldSeparator to use endsWith
> ---
>
> Key: LANG-1565
> URL: https://issues.apache.org/jira/browse/LANG-1565
> Project: Commons Lang
>  Issue Type: Sub-task
>Reporter: Jin Xu
>Priority: Minor
>  Time Spent: 50m
>  Remaining Estimate: 0h
>
> [https://github.com/apache/commons-lang/pull/550]



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[GitHub] [commons-lang] garydgregory merged pull request #550: [LANG-1565] change removeLastFieldSeparator to use endsWith

2020-06-14 Thread GitBox


garydgregory merged pull request #550:
URL: https://github.com/apache/commons-lang/pull/550


   



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.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [commons-beanutils] XenoAmess commented on pull request #27: [BEANUTILS-539] use Concurrent(Weak)HashMap (or anything both faster and have better thread safety) insteadof WeakFastHashMap

2020-06-14 Thread GitBox


XenoAmess commented on pull request #27:
URL: https://github.com/apache/commons-beanutils/pull/27#issuecomment-643767887


   > Just wait. I have a query on the legal mailing list to check to see if we 
can reuse the Infinispan version of its concurrent weak key hash map, and since 
it is co-authored by Doug Lea it likely one of the better if not the best 
implementation out there.
   
   @garydgregory Hi gary. 
   How is that concurrent weak key hash map going? Or any other news about this 
pr?



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.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[jira] [Work logged] (COLLECTIONS-764) Refine javadoc and fix typos

2020-06-14 Thread ASF GitHub Bot (Jira)


 [ 
https://issues.apache.org/jira/browse/COLLECTIONS-764?focusedWorklogId=445565=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-445565
 ]

ASF GitHub Bot logged work on COLLECTIONS-764:
--

Author: ASF GitHub Bot
Created on: 14/Jun/20 11:59
Start Date: 14/Jun/20 11:59
Worklog Time Spent: 10m 
  Work Description: coveralls edited a comment on pull request #165:
URL: 
https://github.com/apache/commons-collections/pull/165#issuecomment-637488425


   
   [![Coverage 
Status](https://coveralls.io/builds/31440627/badge)](https://coveralls.io/builds/31440627)
   
   Coverage remained the same at 90.123% when pulling 
**09f9fdde8ba8b5e83634255862c7f72757e37c5e on 
XenoAmess:refine_javadoc_and_fix_typos** into 
**6b4d75f725d9636b3ec6d5c24d410bece5e2fcc7 on apache:master**.
   



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.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Issue Time Tracking
---

Worklog Id: (was: 445565)
Time Spent: 2h 40m  (was: 2.5h)

> Refine javadoc and fix typos
> 
>
> Key: COLLECTIONS-764
> URL: https://issues.apache.org/jira/browse/COLLECTIONS-764
> Project: Commons Collections
>  Issue Type: Improvement
>Reporter: Jin Xu
>Priority: Minor
>  Time Spent: 2h 40m
>  Remaining Estimate: 0h
>
> [https://github.com/apache/commons-collections/pull/165]



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[GitHub] [commons-collections] coveralls edited a comment on pull request #165: [COLLECTIONS-764] Refine javadoc and fix typos

2020-06-14 Thread GitBox


coveralls edited a comment on pull request #165:
URL: 
https://github.com/apache/commons-collections/pull/165#issuecomment-637488425


   
   [![Coverage 
Status](https://coveralls.io/builds/31440627/badge)](https://coveralls.io/builds/31440627)
   
   Coverage remained the same at 90.123% when pulling 
**09f9fdde8ba8b5e83634255862c7f72757e37c5e on 
XenoAmess:refine_javadoc_and_fix_typos** into 
**6b4d75f725d9636b3ec6d5c24d410bece5e2fcc7 on apache:master**.
   



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.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [commons-beanutils] XenoAmess closed pull request #26: [BEANUTILS-538] refine performance of MethodUtils.getPrimitiveWrapper and getPrimitiveType

2020-06-14 Thread GitBox


XenoAmess closed pull request #26:
URL: https://github.com/apache/commons-beanutils/pull/26


   



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.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[jira] [Work logged] (COLLECTIONS-764) Refine javadoc and fix typos

2020-06-14 Thread ASF GitHub Bot (Jira)


 [ 
https://issues.apache.org/jira/browse/COLLECTIONS-764?focusedWorklogId=445563=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-445563
 ]

ASF GitHub Bot logged work on COLLECTIONS-764:
--

Author: ASF GitHub Bot
Created on: 14/Jun/20 11:42
Start Date: 14/Jun/20 11:42
Worklog Time Spent: 10m 
  Work Description: XenoAmess commented on pull request #165:
URL: 
https://github.com/apache/commons-collections/pull/165#issuecomment-643755003


   the travis-ci false pending for several days already.
   will try to retrigger it.



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.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Issue Time Tracking
---

Worklog Id: (was: 445563)
Time Spent: 2.5h  (was: 2h 20m)

> Refine javadoc and fix typos
> 
>
> Key: COLLECTIONS-764
> URL: https://issues.apache.org/jira/browse/COLLECTIONS-764
> Project: Commons Collections
>  Issue Type: Improvement
>Reporter: Jin Xu
>Priority: Minor
>  Time Spent: 2.5h
>  Remaining Estimate: 0h
>
> [https://github.com/apache/commons-collections/pull/165]



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[GitHub] [commons-collections] XenoAmess commented on pull request #165: [COLLECTIONS-764] Refine javadoc and fix typos

2020-06-14 Thread GitBox


XenoAmess commented on pull request #165:
URL: 
https://github.com/apache/commons-collections/pull/165#issuecomment-643755003


   the travis-ci false pending for several days already.
   will try to retrigger it.



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.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [commons-compress] XenoAmess closed pull request #108: Performance test for BZip2CompressorOutputStream

2020-06-14 Thread GitBox


XenoAmess closed pull request #108:
URL: https://github.com/apache/commons-compress/pull/108


   



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.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [commons-lang] coveralls edited a comment on pull request #535: [LANG-1549] implement TODO in CharSequenceUtils.lastIndexOf : remake it.

2020-06-14 Thread GitBox


coveralls edited a comment on pull request #535:
URL: https://github.com/apache/commons-lang/pull/535#issuecomment-636537530


   
   [![Coverage 
Status](https://coveralls.io/builds/31440072/badge)](https://coveralls.io/builds/31440072)
   
   Coverage decreased (-0.04%) to 94.991% when pulling 
**09794c0dcbccd796b0e967222b8a411f42c79065 on 
XenoAmess:refine_CharSequenceUtils** into 
**9fcd9c86edc05a0bd25f8eb73cf840400e5e6b95 on apache:master**.
   



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.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[jira] [Work logged] (LANG-1549) implement TODO in CharSequenceUtils.lastIndexOf : remake it.

2020-06-14 Thread ASF GitHub Bot (Jira)


 [ 
https://issues.apache.org/jira/browse/LANG-1549?focusedWorklogId=445559=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-445559
 ]

ASF GitHub Bot logged work on LANG-1549:


Author: ASF GitHub Bot
Created on: 14/Jun/20 10:18
Start Date: 14/Jun/20 10:18
Worklog Time Spent: 10m 
  Work Description: coveralls edited a comment on pull request #535:
URL: https://github.com/apache/commons-lang/pull/535#issuecomment-636537530


   
   [![Coverage 
Status](https://coveralls.io/builds/31440072/badge)](https://coveralls.io/builds/31440072)
   
   Coverage decreased (-0.04%) to 94.991% when pulling 
**09794c0dcbccd796b0e967222b8a411f42c79065 on 
XenoAmess:refine_CharSequenceUtils** into 
**9fcd9c86edc05a0bd25f8eb73cf840400e5e6b95 on apache:master**.
   



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.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Issue Time Tracking
---

Worklog Id: (was: 445559)
Time Spent: 50m  (was: 40m)

> implement TODO in CharSequenceUtils.lastIndexOf : remake it.
> 
>
> Key: LANG-1549
> URL: https://issues.apache.org/jira/browse/LANG-1549
> Project: Commons Lang
>  Issue Type: Improvement
>Reporter: Jin Xu
>Priority: Major
>  Time Spent: 50m
>  Remaining Estimate: 0h
>
> [https://github.com/apache/commons-lang/pull/535]



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Work logged] (LANG-1557) change a Pattern to a static final field, for not letting it compile each time the function invoked.

2020-06-14 Thread ASF GitHub Bot (Jira)


 [ 
https://issues.apache.org/jira/browse/LANG-1557?focusedWorklogId=445558=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-445558
 ]

ASF GitHub Bot logged work on LANG-1557:


Author: ASF GitHub Bot
Created on: 14/Jun/20 10:14
Start Date: 14/Jun/20 10:14
Worklog Time Spent: 10m 
  Work Description: coveralls edited a comment on pull request #542:
URL: https://github.com/apache/commons-lang/pull/542#issuecomment-636677473


   
   [![Coverage 
Status](https://coveralls.io/builds/31440044/badge)](https://coveralls.io/builds/31440044)
   
   Coverage remained the same at 95.028% when pulling 
**334e12341bce474cb1c9df110272ee5c5c1455c0 on XenoAmess:Pattern_to_static_** 
into **9fcd9c86edc05a0bd25f8eb73cf840400e5e6b95 on apache:master**.
   



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.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Issue Time Tracking
---

Worklog Id: (was: 445558)
Time Spent: 40m  (was: 0.5h)

> change a Pattern to a static final field, for not letting it compile each 
> time the function invoked.
> 
>
> Key: LANG-1557
> URL: https://issues.apache.org/jira/browse/LANG-1557
> Project: Commons Lang
>  Issue Type: Sub-task
>Reporter: Jin Xu
>Priority: Minor
>  Time Spent: 40m
>  Remaining Estimate: 0h
>
> [https://github.com/apache/commons-lang/pull/542]



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[GitHub] [commons-lang] coveralls edited a comment on pull request #542: [LANG-1557] change a Pattern to a static final field, for not letting it compile each time the function invoked.

2020-06-14 Thread GitBox


coveralls edited a comment on pull request #542:
URL: https://github.com/apache/commons-lang/pull/542#issuecomment-636677473


   
   [![Coverage 
Status](https://coveralls.io/builds/31440044/badge)](https://coveralls.io/builds/31440044)
   
   Coverage remained the same at 95.028% when pulling 
**334e12341bce474cb1c9df110272ee5c5c1455c0 on XenoAmess:Pattern_to_static_** 
into **9fcd9c86edc05a0bd25f8eb73cf840400e5e6b95 on apache:master**.
   



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.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[jira] [Work logged] (LANG-1548) split regionMatches for better performance

2020-06-14 Thread ASF GitHub Bot (Jira)


 [ 
https://issues.apache.org/jira/browse/LANG-1548?focusedWorklogId=445556=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-445556
 ]

ASF GitHub Bot logged work on LANG-1548:


Author: ASF GitHub Bot
Created on: 14/Jun/20 10:11
Start Date: 14/Jun/20 10:11
Worklog Time Spent: 10m 
  Work Description: coveralls edited a comment on pull request #534:
URL: https://github.com/apache/commons-lang/pull/534#issuecomment-636531146


   
   [![Coverage 
Status](https://coveralls.io/builds/31440001/badge)](https://coveralls.io/builds/31440001)
   
   Coverage increased (+0.005%) to 95.033% when pulling 
**f0df6daaa0646264dd02229b47fb2f33b87d5fad on 
XenoAmess:split_regionMatches_for_better_performance** into 
**9fcd9c86edc05a0bd25f8eb73cf840400e5e6b95 on apache:master**.
   



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.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Issue Time Tracking
---

Worklog Id: (was: 445556)
Time Spent: 4h  (was: 3h 50m)

> split regionMatches for better performance
> --
>
> Key: LANG-1548
> URL: https://issues.apache.org/jira/browse/LANG-1548
> Project: Commons Lang
>  Issue Type: Improvement
>Reporter: Jin Xu
>Priority: Major
>  Time Spent: 4h
>  Remaining Estimate: 0h
>
> [https://github.com/apache/commons-lang/pull/534/files]



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Work logged] (LANG-1565) change removeLastFieldSeparator to use endsWith

2020-06-14 Thread ASF GitHub Bot (Jira)


 [ 
https://issues.apache.org/jira/browse/LANG-1565?focusedWorklogId=445557=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-445557
 ]

ASF GitHub Bot logged work on LANG-1565:


Author: ASF GitHub Bot
Created on: 14/Jun/20 10:11
Start Date: 14/Jun/20 10:11
Worklog Time Spent: 10m 
  Work Description: coveralls edited a comment on pull request #550:
URL: https://github.com/apache/commons-lang/pull/550#issuecomment-636710503


   
   [![Coverage 
Status](https://coveralls.io/builds/31440015/badge)](https://coveralls.io/builds/31440015)
   
   Coverage decreased (-0.003%) to 95.026% when pulling 
**d3e1cda30d8ae19a7cb48ecb1bb43ffe6b523eee on 
XenoAmess:change_removeLastFieldSeparator_to_use_endsWith** into 
**9fcd9c86edc05a0bd25f8eb73cf840400e5e6b95 on apache:master**.
   



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.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Issue Time Tracking
---

Worklog Id: (was: 445557)
Time Spent: 40m  (was: 0.5h)

> change removeLastFieldSeparator to use endsWith
> ---
>
> Key: LANG-1565
> URL: https://issues.apache.org/jira/browse/LANG-1565
> Project: Commons Lang
>  Issue Type: Sub-task
>Reporter: Jin Xu
>Priority: Minor
>  Time Spent: 40m
>  Remaining Estimate: 0h
>
> [https://github.com/apache/commons-lang/pull/550]



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[GitHub] [commons-lang] coveralls edited a comment on pull request #534: [LANG-1548] split regionMatches for better performance

2020-06-14 Thread GitBox


coveralls edited a comment on pull request #534:
URL: https://github.com/apache/commons-lang/pull/534#issuecomment-636531146


   
   [![Coverage 
Status](https://coveralls.io/builds/31440001/badge)](https://coveralls.io/builds/31440001)
   
   Coverage increased (+0.005%) to 95.033% when pulling 
**f0df6daaa0646264dd02229b47fb2f33b87d5fad on 
XenoAmess:split_regionMatches_for_better_performance** into 
**9fcd9c86edc05a0bd25f8eb73cf840400e5e6b95 on apache:master**.
   



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.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [commons-lang] coveralls edited a comment on pull request #550: [LANG-1565] change removeLastFieldSeparator to use endsWith

2020-06-14 Thread GitBox


coveralls edited a comment on pull request #550:
URL: https://github.com/apache/commons-lang/pull/550#issuecomment-636710503


   
   [![Coverage 
Status](https://coveralls.io/builds/31440015/badge)](https://coveralls.io/builds/31440015)
   
   Coverage decreased (-0.003%) to 95.026% when pulling 
**d3e1cda30d8ae19a7cb48ecb1bb43ffe6b523eee on 
XenoAmess:change_removeLastFieldSeparator_to_use_endsWith** into 
**9fcd9c86edc05a0bd25f8eb73cf840400e5e6b95 on apache:master**.
   



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.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org