[jira] [Resolved] (KARAF-6337) ConcurrentModificationException when executing commands

2019-09-07 Thread Jira


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

Jean-Baptiste Onofré resolved KARAF-6337.
-
Resolution: Fixed

> ConcurrentModificationException when executing commands
> ---
>
> Key: KARAF-6337
> URL: https://issues.apache.org/jira/browse/KARAF-6337
> Project: Karaf
>  Issue Type: Bug
>  Components: karaf
>Affects Versions: 4.2.5, 4.2.6
>Reporter: Rico Neubauer
>Assignee: Jean-Baptiste Onofré
>Priority: Minor
> Fix For: 4.3.0, 4.2.7
>
>
> Issuing commands via bin/client concurrently may give the error below.
>  
>  
> {noformat}
> org.apache.karaf.shell.ssh.ShellCommand Thread-280 
> [org.apache.karaf.shell.ssh:4.2.5] Unable to start shell
> java.util.ConcurrentModificationException: null
> at java.util.Hashtable$Enumerator.next(Hashtable.java:1387) ~[?:?]
> at 
> org.apache.karaf.shell.impl.console.HeadlessSessionImpl.(HeadlessSessionImpl.java:71)
>  ~[?:?]
> at 
> org.apache.karaf.shell.impl.console.SessionFactoryImpl.create(SessionFactoryImpl.java:178)
>  ~[?:?]
> at 
> org.apache.karaf.shell.impl.console.SessionFactoryImpl.create(SessionFactoryImpl.java:169)
>  ~[?:?]
> at org.apache.karaf.shell.ssh.ShellCommand.run(ShellCommand.java:102) ~[?:?]
> at java.lang.Thread.run(Thread.java:748) [?:?]{noformat}
> This is the code:
> {code:java}
> if (parent == null) {
> Properties sysProps = System.getProperties();
> for (Object key : sysProps.keySet()) {   // line 71
> session.put(key.toString(), sysProps.get(key));
> }
> }
> {code}
>  



--
This message was sent by Atlassian Jira
(v8.3.2#803003)


[jira] [Updated] (KARAF-6333) Add Karaf jaas based authentication example

2019-09-07 Thread Jira


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

Jean-Baptiste Onofré updated KARAF-6333:

Fix Version/s: (was: 4.2.7)
   4.2.8

> Add Karaf jaas based authentication example
> ---
>
> Key: KARAF-6333
> URL: https://issues.apache.org/jira/browse/KARAF-6333
> Project: Karaf
>  Issue Type: Task
>  Components: karaf
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 4.3.0, 4.2.8
>
>
> The purpose of this example is to illustrate the usage of Karaf JAAS realm in 
> a webapplication for instance.



--
This message was sent by Atlassian Jira
(v8.3.2#803003)


[jira] [Updated] (KARAF-6330) Add webconsole branding example

2019-09-07 Thread Jira


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

Jean-Baptiste Onofré updated KARAF-6330:

Fix Version/s: (was: 4.2.7)
   4.2.8

> Add webconsole branding example
> ---
>
> Key: KARAF-6330
> URL: https://issues.apache.org/jira/browse/KARAF-6330
> Project: Karaf
>  Issue Type: Task
>  Components: karaf
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 4.3.0, 4.2.8
>
>




--
This message was sent by Atlassian Jira
(v8.3.2#803003)


[jira] [Commented] (KARAF-6337) ConcurrentModificationException when executing commands

2019-09-07 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/KARAF-6337?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16925069#comment-16925069
 ] 

ASF subversion and git services commented on KARAF-6337:


Commit 03eb30a68e759036fa6333c4f8219da35eee517f in karaf's branch 
refs/heads/karaf-4.2.x from Rico Neubauer
[ https://gitbox.apache.org/repos/asf?p=karaf.git;h=03eb30a ]

[KARAF-6337] Prevent ConcurrentModificationException

when iterating over system properties

(cherry picked from commit df405bd50660a8abbc0ee33fde536c35b9fe5c5e)


> ConcurrentModificationException when executing commands
> ---
>
> Key: KARAF-6337
> URL: https://issues.apache.org/jira/browse/KARAF-6337
> Project: Karaf
>  Issue Type: Bug
>  Components: karaf
>Affects Versions: 4.2.5, 4.2.6
>Reporter: Rico Neubauer
>Assignee: Jean-Baptiste Onofré
>Priority: Minor
> Fix For: 4.3.0, 4.2.7
>
>
> Issuing commands via bin/client concurrently may give the error below.
>  
>  
> {noformat}
> org.apache.karaf.shell.ssh.ShellCommand Thread-280 
> [org.apache.karaf.shell.ssh:4.2.5] Unable to start shell
> java.util.ConcurrentModificationException: null
> at java.util.Hashtable$Enumerator.next(Hashtable.java:1387) ~[?:?]
> at 
> org.apache.karaf.shell.impl.console.HeadlessSessionImpl.(HeadlessSessionImpl.java:71)
>  ~[?:?]
> at 
> org.apache.karaf.shell.impl.console.SessionFactoryImpl.create(SessionFactoryImpl.java:178)
>  ~[?:?]
> at 
> org.apache.karaf.shell.impl.console.SessionFactoryImpl.create(SessionFactoryImpl.java:169)
>  ~[?:?]
> at org.apache.karaf.shell.ssh.ShellCommand.run(ShellCommand.java:102) ~[?:?]
> at java.lang.Thread.run(Thread.java:748) [?:?]{noformat}
> This is the code:
> {code:java}
> if (parent == null) {
> Properties sysProps = System.getProperties();
> for (Object key : sysProps.keySet()) {   // line 71
> session.put(key.toString(), sysProps.get(key));
> }
> }
> {code}
>  



--
This message was sent by Atlassian Jira
(v8.3.2#803003)


[jira] [Commented] (KARAF-6337) ConcurrentModificationException when executing commands

2019-09-07 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/KARAF-6337?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16925067#comment-16925067
 ] 

ASF subversion and git services commented on KARAF-6337:


Commit 296023eee1af32f9590f90a479ebb36f3ea8f7e4 in karaf's branch 
refs/heads/master from Jean-Baptiste Onofré
[ https://gitbox.apache.org/repos/asf?p=karaf.git;h=296023e ]

Merge pull request #905 from seeburger-ag/KARAF-6337

[KARAF-6337] Prevent ConcurrentModificationException

> ConcurrentModificationException when executing commands
> ---
>
> Key: KARAF-6337
> URL: https://issues.apache.org/jira/browse/KARAF-6337
> Project: Karaf
>  Issue Type: Bug
>  Components: karaf
>Affects Versions: 4.2.5, 4.2.6
>Reporter: Rico Neubauer
>Assignee: Jean-Baptiste Onofré
>Priority: Minor
> Fix For: 4.3.0, 4.2.7
>
>
> Issuing commands via bin/client concurrently may give the error below.
>  
>  
> {noformat}
> org.apache.karaf.shell.ssh.ShellCommand Thread-280 
> [org.apache.karaf.shell.ssh:4.2.5] Unable to start shell
> java.util.ConcurrentModificationException: null
> at java.util.Hashtable$Enumerator.next(Hashtable.java:1387) ~[?:?]
> at 
> org.apache.karaf.shell.impl.console.HeadlessSessionImpl.(HeadlessSessionImpl.java:71)
>  ~[?:?]
> at 
> org.apache.karaf.shell.impl.console.SessionFactoryImpl.create(SessionFactoryImpl.java:178)
>  ~[?:?]
> at 
> org.apache.karaf.shell.impl.console.SessionFactoryImpl.create(SessionFactoryImpl.java:169)
>  ~[?:?]
> at org.apache.karaf.shell.ssh.ShellCommand.run(ShellCommand.java:102) ~[?:?]
> at java.lang.Thread.run(Thread.java:748) [?:?]{noformat}
> This is the code:
> {code:java}
> if (parent == null) {
> Properties sysProps = System.getProperties();
> for (Object key : sysProps.keySet()) {   // line 71
> session.put(key.toString(), sysProps.get(key));
> }
> }
> {code}
>  



--
This message was sent by Atlassian Jira
(v8.3.2#803003)


[jira] [Commented] (KARAF-6337) ConcurrentModificationException when executing commands

2019-09-07 Thread ASF GitHub Bot (Jira)


[ 
https://issues.apache.org/jira/browse/KARAF-6337?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16925065#comment-16925065
 ] 

ASF GitHub Bot commented on KARAF-6337:
---

jbonofre commented on pull request #905: [KARAF-6337] Prevent 
ConcurrentModificationException
URL: https://github.com/apache/karaf/pull/905
 
 
   
 

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


> ConcurrentModificationException when executing commands
> ---
>
> Key: KARAF-6337
> URL: https://issues.apache.org/jira/browse/KARAF-6337
> Project: Karaf
>  Issue Type: Bug
>  Components: karaf
>Affects Versions: 4.2.5, 4.2.6
>Reporter: Rico Neubauer
>Assignee: Jean-Baptiste Onofré
>Priority: Minor
> Fix For: 4.3.0, 4.2.7
>
>
> Issuing commands via bin/client concurrently may give the error below.
>  
>  
> {noformat}
> org.apache.karaf.shell.ssh.ShellCommand Thread-280 
> [org.apache.karaf.shell.ssh:4.2.5] Unable to start shell
> java.util.ConcurrentModificationException: null
> at java.util.Hashtable$Enumerator.next(Hashtable.java:1387) ~[?:?]
> at 
> org.apache.karaf.shell.impl.console.HeadlessSessionImpl.(HeadlessSessionImpl.java:71)
>  ~[?:?]
> at 
> org.apache.karaf.shell.impl.console.SessionFactoryImpl.create(SessionFactoryImpl.java:178)
>  ~[?:?]
> at 
> org.apache.karaf.shell.impl.console.SessionFactoryImpl.create(SessionFactoryImpl.java:169)
>  ~[?:?]
> at org.apache.karaf.shell.ssh.ShellCommand.run(ShellCommand.java:102) ~[?:?]
> at java.lang.Thread.run(Thread.java:748) [?:?]{noformat}
> This is the code:
> {code:java}
> if (parent == null) {
> Properties sysProps = System.getProperties();
> for (Object key : sysProps.keySet()) {   // line 71
> session.put(key.toString(), sysProps.get(key));
> }
> }
> {code}
>  



--
This message was sent by Atlassian Jira
(v8.3.2#803003)


[jira] [Commented] (KARAF-6337) ConcurrentModificationException when executing commands

2019-09-07 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/KARAF-6337?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16925068#comment-16925068
 ] 

ASF subversion and git services commented on KARAF-6337:


Commit 296023eee1af32f9590f90a479ebb36f3ea8f7e4 in karaf's branch 
refs/heads/master from Jean-Baptiste Onofré
[ https://gitbox.apache.org/repos/asf?p=karaf.git;h=296023e ]

Merge pull request #905 from seeburger-ag/KARAF-6337

[KARAF-6337] Prevent ConcurrentModificationException

> ConcurrentModificationException when executing commands
> ---
>
> Key: KARAF-6337
> URL: https://issues.apache.org/jira/browse/KARAF-6337
> Project: Karaf
>  Issue Type: Bug
>  Components: karaf
>Affects Versions: 4.2.5, 4.2.6
>Reporter: Rico Neubauer
>Assignee: Jean-Baptiste Onofré
>Priority: Minor
> Fix For: 4.3.0, 4.2.7
>
>
> Issuing commands via bin/client concurrently may give the error below.
>  
>  
> {noformat}
> org.apache.karaf.shell.ssh.ShellCommand Thread-280 
> [org.apache.karaf.shell.ssh:4.2.5] Unable to start shell
> java.util.ConcurrentModificationException: null
> at java.util.Hashtable$Enumerator.next(Hashtable.java:1387) ~[?:?]
> at 
> org.apache.karaf.shell.impl.console.HeadlessSessionImpl.(HeadlessSessionImpl.java:71)
>  ~[?:?]
> at 
> org.apache.karaf.shell.impl.console.SessionFactoryImpl.create(SessionFactoryImpl.java:178)
>  ~[?:?]
> at 
> org.apache.karaf.shell.impl.console.SessionFactoryImpl.create(SessionFactoryImpl.java:169)
>  ~[?:?]
> at org.apache.karaf.shell.ssh.ShellCommand.run(ShellCommand.java:102) ~[?:?]
> at java.lang.Thread.run(Thread.java:748) [?:?]{noformat}
> This is the code:
> {code:java}
> if (parent == null) {
> Properties sysProps = System.getProperties();
> for (Object key : sysProps.keySet()) {   // line 71
> session.put(key.toString(), sysProps.get(key));
> }
> }
> {code}
>  



--
This message was sent by Atlassian Jira
(v8.3.2#803003)


[jira] [Commented] (KARAF-6337) ConcurrentModificationException when executing commands

2019-09-07 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/KARAF-6337?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16925066#comment-16925066
 ] 

ASF subversion and git services commented on KARAF-6337:


Commit df405bd50660a8abbc0ee33fde536c35b9fe5c5e in karaf's branch 
refs/heads/master from Rico Neubauer
[ https://gitbox.apache.org/repos/asf?p=karaf.git;h=df405bd ]

[KARAF-6337] Prevent ConcurrentModificationException

when iterating over system properties

> ConcurrentModificationException when executing commands
> ---
>
> Key: KARAF-6337
> URL: https://issues.apache.org/jira/browse/KARAF-6337
> Project: Karaf
>  Issue Type: Bug
>  Components: karaf
>Affects Versions: 4.2.5, 4.2.6
>Reporter: Rico Neubauer
>Assignee: Jean-Baptiste Onofré
>Priority: Minor
> Fix For: 4.3.0, 4.2.7
>
>
> Issuing commands via bin/client concurrently may give the error below.
>  
>  
> {noformat}
> org.apache.karaf.shell.ssh.ShellCommand Thread-280 
> [org.apache.karaf.shell.ssh:4.2.5] Unable to start shell
> java.util.ConcurrentModificationException: null
> at java.util.Hashtable$Enumerator.next(Hashtable.java:1387) ~[?:?]
> at 
> org.apache.karaf.shell.impl.console.HeadlessSessionImpl.(HeadlessSessionImpl.java:71)
>  ~[?:?]
> at 
> org.apache.karaf.shell.impl.console.SessionFactoryImpl.create(SessionFactoryImpl.java:178)
>  ~[?:?]
> at 
> org.apache.karaf.shell.impl.console.SessionFactoryImpl.create(SessionFactoryImpl.java:169)
>  ~[?:?]
> at org.apache.karaf.shell.ssh.ShellCommand.run(ShellCommand.java:102) ~[?:?]
> at java.lang.Thread.run(Thread.java:748) [?:?]{noformat}
> This is the code:
> {code:java}
> if (parent == null) {
> Properties sysProps = System.getProperties();
> for (Object key : sysProps.keySet()) {   // line 71
> session.put(key.toString(), sysProps.get(key));
> }
> }
> {code}
>  



--
This message was sent by Atlassian Jira
(v8.3.2#803003)


[jira] [Resolved] (KARAF-6409) Upgrade to ant 1.10.7

2019-09-07 Thread Jira


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

Jean-Baptiste Onofré resolved KARAF-6409.
-
Resolution: Fixed

> Upgrade to ant 1.10.7
> -
>
> Key: KARAF-6409
> URL: https://issues.apache.org/jira/browse/KARAF-6409
> Project: Karaf
>  Issue Type: Dependency upgrade
>  Components: karaf
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 4.3.0, 4.2.7
>
>




--
This message was sent by Atlassian Jira
(v8.3.2#803003)


[jira] [Resolved] (KARAF-6411) Upgrade to commons-codec 1.13

2019-09-07 Thread Jira


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

Jean-Baptiste Onofré resolved KARAF-6411.
-
Resolution: Fixed

> Upgrade to commons-codec 1.13
> -
>
> Key: KARAF-6411
> URL: https://issues.apache.org/jira/browse/KARAF-6411
> Project: Karaf
>  Issue Type: Dependency upgrade
>  Components: karaf
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 4.3.0, 4.2.7
>
>




--
This message was sent by Atlassian Jira
(v8.3.2#803003)


[jira] [Commented] (KARAF-6409) Upgrade to ant 1.10.7

2019-09-07 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/KARAF-6409?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16925063#comment-16925063
 ] 

ASF subversion and git services commented on KARAF-6409:


Commit 42883615c56f56f7aea36f77117a2667a1ed6321 in karaf's branch 
refs/heads/master from Jean-Baptiste Onofré
[ https://gitbox.apache.org/repos/asf?p=karaf.git;h=4288361 ]

Merge pull request #927 from jbonofre/KARAF-6409

[KARAF-6409] Upgrade to ant 1.10.7 bundle

> Upgrade to ant 1.10.7
> -
>
> Key: KARAF-6409
> URL: https://issues.apache.org/jira/browse/KARAF-6409
> Project: Karaf
>  Issue Type: Dependency upgrade
>  Components: karaf
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 4.3.0, 4.2.7
>
>




--
This message was sent by Atlassian Jira
(v8.3.2#803003)


[jira] [Commented] (KARAF-6409) Upgrade to ant 1.10.7

2019-09-07 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/KARAF-6409?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16925064#comment-16925064
 ] 

ASF subversion and git services commented on KARAF-6409:


Commit 2d27cf4e6a2e73ba0d0953276aeaec11c176394d in karaf's branch 
refs/heads/karaf-4.2.x from Jean-Baptiste Onofré
[ https://gitbox.apache.org/repos/asf?p=karaf.git;h=2d27cf4 ]

[KARAF-6409] Upgrade to ant 1.10.7 bundle

(cherry picked from commit 73c7341463ffa141f96b55635b5676d90f740fad)


> Upgrade to ant 1.10.7
> -
>
> Key: KARAF-6409
> URL: https://issues.apache.org/jira/browse/KARAF-6409
> Project: Karaf
>  Issue Type: Dependency upgrade
>  Components: karaf
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 4.3.0, 4.2.7
>
>




--
This message was sent by Atlassian Jira
(v8.3.2#803003)


[jira] [Commented] (KARAF-6409) Upgrade to ant 1.10.7

2019-09-07 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/KARAF-6409?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16925061#comment-16925061
 ] 

ASF subversion and git services commented on KARAF-6409:


Commit 73c7341463ffa141f96b55635b5676d90f740fad in karaf's branch 
refs/heads/master from Jean-Baptiste Onofré
[ https://gitbox.apache.org/repos/asf?p=karaf.git;h=73c7341 ]

[KARAF-6409] Upgrade to ant 1.10.7 bundle


> Upgrade to ant 1.10.7
> -
>
> Key: KARAF-6409
> URL: https://issues.apache.org/jira/browse/KARAF-6409
> Project: Karaf
>  Issue Type: Dependency upgrade
>  Components: karaf
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 4.3.0, 4.2.7
>
>




--
This message was sent by Atlassian Jira
(v8.3.2#803003)


[jira] [Commented] (KARAF-6409) Upgrade to ant 1.10.7

2019-09-07 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/KARAF-6409?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16925062#comment-16925062
 ] 

ASF subversion and git services commented on KARAF-6409:


Commit 42883615c56f56f7aea36f77117a2667a1ed6321 in karaf's branch 
refs/heads/master from Jean-Baptiste Onofré
[ https://gitbox.apache.org/repos/asf?p=karaf.git;h=4288361 ]

Merge pull request #927 from jbonofre/KARAF-6409

[KARAF-6409] Upgrade to ant 1.10.7 bundle

> Upgrade to ant 1.10.7
> -
>
> Key: KARAF-6409
> URL: https://issues.apache.org/jira/browse/KARAF-6409
> Project: Karaf
>  Issue Type: Dependency upgrade
>  Components: karaf
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 4.3.0, 4.2.7
>
>




--
This message was sent by Atlassian Jira
(v8.3.2#803003)


[jira] [Commented] (KARAF-6409) Upgrade to ant 1.10.7

2019-09-07 Thread ASF GitHub Bot (Jira)


[ 
https://issues.apache.org/jira/browse/KARAF-6409?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16925060#comment-16925060
 ] 

ASF GitHub Bot commented on KARAF-6409:
---

jbonofre commented on pull request #927: [KARAF-6409] Upgrade to ant 1.10.7 
bundle
URL: https://github.com/apache/karaf/pull/927
 
 
   
 

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


> Upgrade to ant 1.10.7
> -
>
> Key: KARAF-6409
> URL: https://issues.apache.org/jira/browse/KARAF-6409
> Project: Karaf
>  Issue Type: Dependency upgrade
>  Components: karaf
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 4.3.0, 4.2.7
>
>




--
This message was sent by Atlassian Jira
(v8.3.2#803003)


[jira] [Commented] (KARAF-6411) Upgrade to commons-codec 1.13

2019-09-07 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/KARAF-6411?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16925055#comment-16925055
 ] 

ASF subversion and git services commented on KARAF-6411:


Commit bbf19427b5550676e3c8ef468e0e52392c31a23d in karaf's branch 
refs/heads/master from Jean-Baptiste Onofré
[ https://gitbox.apache.org/repos/asf?p=karaf.git;h=bbf1942 ]

Merge pull request #925 from jbonofre/KARAF-6411

[KARAF-6411] Upgrade to commons-codec 1.13

> Upgrade to commons-codec 1.13
> -
>
> Key: KARAF-6411
> URL: https://issues.apache.org/jira/browse/KARAF-6411
> Project: Karaf
>  Issue Type: Dependency upgrade
>  Components: karaf
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 4.3.0, 4.2.7
>
>




--
This message was sent by Atlassian Jira
(v8.3.2#803003)


[jira] [Commented] (KARAF-6411) Upgrade to commons-codec 1.13

2019-09-07 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/KARAF-6411?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16925057#comment-16925057
 ] 

ASF subversion and git services commented on KARAF-6411:


Commit c8989cfdc5f9216718bf0b08474a0213275122bd in karaf's branch 
refs/heads/karaf-4.2.x from Jean-Baptiste Onofré
[ https://gitbox.apache.org/repos/asf?p=karaf.git;h=c8989cf ]

[KARAF-6411] Upgrade to commons-codec 1.13

(cherry picked from commit 7a536cf911a4ce52d6ed2cf573674e0564680c6e)


> Upgrade to commons-codec 1.13
> -
>
> Key: KARAF-6411
> URL: https://issues.apache.org/jira/browse/KARAF-6411
> Project: Karaf
>  Issue Type: Dependency upgrade
>  Components: karaf
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 4.3.0, 4.2.7
>
>




--
This message was sent by Atlassian Jira
(v8.3.2#803003)


[jira] [Commented] (KARAF-6411) Upgrade to commons-codec 1.13

2019-09-07 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/KARAF-6411?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16925056#comment-16925056
 ] 

ASF subversion and git services commented on KARAF-6411:


Commit bbf19427b5550676e3c8ef468e0e52392c31a23d in karaf's branch 
refs/heads/master from Jean-Baptiste Onofré
[ https://gitbox.apache.org/repos/asf?p=karaf.git;h=bbf1942 ]

Merge pull request #925 from jbonofre/KARAF-6411

[KARAF-6411] Upgrade to commons-codec 1.13

> Upgrade to commons-codec 1.13
> -
>
> Key: KARAF-6411
> URL: https://issues.apache.org/jira/browse/KARAF-6411
> Project: Karaf
>  Issue Type: Dependency upgrade
>  Components: karaf
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 4.3.0, 4.2.7
>
>




--
This message was sent by Atlassian Jira
(v8.3.2#803003)


[jira] [Commented] (KARAF-6411) Upgrade to commons-codec 1.13

2019-09-07 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/KARAF-6411?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16925054#comment-16925054
 ] 

ASF subversion and git services commented on KARAF-6411:


Commit 7a536cf911a4ce52d6ed2cf573674e0564680c6e in karaf's branch 
refs/heads/master from Jean-Baptiste Onofré
[ https://gitbox.apache.org/repos/asf?p=karaf.git;h=7a536cf ]

[KARAF-6411] Upgrade to commons-codec 1.13


> Upgrade to commons-codec 1.13
> -
>
> Key: KARAF-6411
> URL: https://issues.apache.org/jira/browse/KARAF-6411
> Project: Karaf
>  Issue Type: Dependency upgrade
>  Components: karaf
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 4.3.0, 4.2.7
>
>




--
This message was sent by Atlassian Jira
(v8.3.2#803003)


[jira] [Commented] (KARAF-6411) Upgrade to commons-codec 1.13

2019-09-07 Thread ASF GitHub Bot (Jira)


[ 
https://issues.apache.org/jira/browse/KARAF-6411?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16925053#comment-16925053
 ] 

ASF GitHub Bot commented on KARAF-6411:
---

jbonofre commented on pull request #925: [KARAF-6411] Upgrade to commons-codec 
1.13
URL: https://github.com/apache/karaf/pull/925
 
 
   
 

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


> Upgrade to commons-codec 1.13
> -
>
> Key: KARAF-6411
> URL: https://issues.apache.org/jira/browse/KARAF-6411
> Project: Karaf
>  Issue Type: Dependency upgrade
>  Components: karaf
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 4.3.0, 4.2.7
>
>




--
This message was sent by Atlassian Jira
(v8.3.2#803003)


[jira] [Resolved] (KARAF-6344) AsyncLogger fails due to bug in pax-logging

2019-09-07 Thread Jira


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

Jean-Baptiste Onofré resolved KARAF-6344.
-
Resolution: Fixed

> AsyncLogger fails due to bug in pax-logging
> ---
>
> Key: KARAF-6344
> URL: https://issues.apache.org/jira/browse/KARAF-6344
> Project: Karaf
>  Issue Type: Bug
>  Components: karaf
>Affects Versions: 4.2.6
>Reporter: Rico Neubauer
>Assignee: Jean-Baptiste Onofré
>Priority: Major
>  Labels: logging
> Fix For: 4.3.0, 4.2.7
>
>
> Just as reference:
> Karaf 4.2.6 updated to pax-logging 1.10.2, which introduced this regression:
> [https://ops4j1.jira.com/browse/PAXLOGGING-260]
> This leads to the logger breaking if e.g. Karaf gets configured for async 
> logging _log4j2.rootLogger.type = asyncRoot_ in logging config. Exception 
> below.



--
This message was sent by Atlassian Jira
(v8.3.2#803003)


[jira] [Commented] (KARAF-6353) Sanitize ShutdownSocketThread command log

2019-09-07 Thread ASF GitHub Bot (Jira)


[ 
https://issues.apache.org/jira/browse/KARAF-6353?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16924856#comment-16924856
 ] 

ASF GitHub Bot commented on KARAF-6353:
---

jbonofre commented on pull request #933: [KARAF-6353] Remove invalid command 
displayed in the log in shutdown socket
URL: https://github.com/apache/karaf/pull/933
 
 
   
 

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


> Sanitize ShutdownSocketThread command log
> -
>
> Key: KARAF-6353
> URL: https://issues.apache.org/jira/browse/KARAF-6353
> Project: Karaf
>  Issue Type: Improvement
>  Components: karaf
>Reporter: Colm O hEigeartaigh
>Assignee: Jean-Baptiste Onofré
>Priority: Minor
> Fix For: 4.3.0, 4.2.7
>
>
> In ShutdownSocketThread it logs an unsucessful command with:
> {code}
>  LOG.log(Level.WARNING, "Karaf shutdown socket:  Invalid command '" +
>   command.toString() + "' received");
> {code}
> Here we should make sure to sanitize the command.toString() output, as 
> otherwise it gives an attacker the opportunity to pollute the logs with CRLF 
> characters.



--
This message was sent by Atlassian Jira
(v8.3.2#803003)


[jira] [Assigned] (KARAF-6361) jre.properties lists CORBA packages for jre-11

2019-09-07 Thread Jira


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

Jean-Baptiste Onofré reassigned KARAF-6361:
---

Assignee: Jean-Baptiste Onofré  (was: Freeman Fang)

> jre.properties lists CORBA packages for jre-11
> --
>
> Key: KARAF-6361
> URL: https://issues.apache.org/jira/browse/KARAF-6361
> Project: Karaf
>  Issue Type: Bug
>  Components: karaf
>Affects Versions: 4.3.0, 4.2.6
>Reporter: Robert Varga
>Assignee: Jean-Baptiste Onofré
>Priority: Minor
> Fix For: 4.3.0, 4.2.7
>
>
> [https://openjdk.java.net/jeps/320] removed Corba (and others), so the list 
> of JRE-provided packages is different between jre-9 and jre-11, but jre-11 is 
> an alias for jre-9.



--
This message was sent by Atlassian Jira
(v8.3.2#803003)


[jira] [Commented] (KARAF-6361) jre.properties lists CORBA packages for jre-11

2019-09-07 Thread Jira


[ 
https://issues.apache.org/jira/browse/KARAF-6361?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16924854#comment-16924854
 ] 

Jean-Baptiste Onofré commented on KARAF-6361:
-

I fixed in example by using "atomic" CXF features instead of the "global" 
{{cxf}} one.

> jre.properties lists CORBA packages for jre-11
> --
>
> Key: KARAF-6361
> URL: https://issues.apache.org/jira/browse/KARAF-6361
> Project: Karaf
>  Issue Type: Bug
>  Components: karaf
>Affects Versions: 4.3.0, 4.2.6
>Reporter: Robert Varga
>Assignee: Freeman Fang
>Priority: Minor
> Fix For: 4.3.0, 4.2.7
>
>
> [https://openjdk.java.net/jeps/320] removed Corba (and others), so the list 
> of JRE-provided packages is different between jre-9 and jre-11, but jre-11 is 
> an alias for jre-9.



--
This message was sent by Atlassian Jira
(v8.3.2#803003)


[jira] [Resolved] (KARAF-6361) jre.properties lists CORBA packages for jre-11

2019-09-07 Thread Jira


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

Jean-Baptiste Onofré resolved KARAF-6361.
-
Resolution: Fixed

> jre.properties lists CORBA packages for jre-11
> --
>
> Key: KARAF-6361
> URL: https://issues.apache.org/jira/browse/KARAF-6361
> Project: Karaf
>  Issue Type: Bug
>  Components: karaf
>Affects Versions: 4.3.0, 4.2.6
>Reporter: Robert Varga
>Assignee: Jean-Baptiste Onofré
>Priority: Minor
> Fix For: 4.3.0, 4.2.7
>
>
> [https://openjdk.java.net/jeps/320] removed Corba (and others), so the list 
> of JRE-provided packages is different between jre-9 and jre-11, but jre-11 is 
> an alias for jre-9.



--
This message was sent by Atlassian Jira
(v8.3.2#803003)


[jira] [Commented] (KARAF-6395) Upgrade to maven-bundle-plugin 4.2.1

2019-09-07 Thread ASF GitHub Bot (Jira)


[ 
https://issues.apache.org/jira/browse/KARAF-6395?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16924849#comment-16924849
 ] 

ASF GitHub Bot commented on KARAF-6395:
---

jbonofre commented on pull request #932: [KARAF-6395] Create KARAF_LOG if it 
doesn't exist in karaf.bat
URL: https://github.com/apache/karaf/pull/932
 
 
   
 

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


> Upgrade to maven-bundle-plugin 4.2.1
> 
>
> Key: KARAF-6395
> URL: https://issues.apache.org/jira/browse/KARAF-6395
> Project: Karaf
>  Issue Type: Dependency upgrade
>  Components: cave, cellar, decanter, karaf
>Reporter: Jean-Baptiste Onofré
>Assignee: Jean-Baptiste Onofré
>Priority: Major
> Fix For: 4.3.0, 4.2.7
>
>




--
This message was sent by Atlassian Jira
(v8.3.2#803003)