[jira] [Work logged] (ARTEMIS-2806) deployQueue missing address argument

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


 [ 
https://issues.apache.org/jira/browse/ARTEMIS-2806?focusedWorklogId=446246=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-446246
 ]

ASF GitHub Bot logged work on ARTEMIS-2806:
---

Author: ASF GitHub Bot
Created on: 16/Jun/20 02:39
Start Date: 16/Jun/20 02:39
Worklog Time Spent: 10m 
  Work Description: jbertram commented on pull request #3185:
URL: https://github.com/apache/activemq-artemis/pull/3185#issuecomment-644495829


   We certainly want to fix this bug, but it's worth noting that all versions 
of `deployQueue` are deprecated so I recommend you migrate to `createQueue` as 
soon as possible. Furthermore, there are no actual tests for `deployQueue` 
which is almost certainly why this bug was not caught.



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: 446246)
Time Spent: 0.5h  (was: 20m)

> deployQueue missing address argument
> 
>
> Key: ARTEMIS-2806
> URL: https://issues.apache.org/jira/browse/ARTEMIS-2806
> Project: ActiveMQ Artemis
>  Issue Type: Bug
>Affects Versions: 2.12.0
>Reporter: Qihong Xu
>Priority: Minor
>  Time Spent: 0.5h
>  Remaining Estimate: 0h
>
> In ActiveMQServerControlImpl, deployQueue method is missing address argument 
> which results in creating non-matched addresses and queues. (For example, 
> using deployQueue to create a subscriber A_0 under existing address A, it 
> finally returns a new topic A_0 with a subscriber A_0 )



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


[jira] [Work logged] (ARTEMIS-2806) deployQueue missing address argument

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


 [ 
https://issues.apache.org/jira/browse/ARTEMIS-2806?focusedWorklogId=446244=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-446244
 ]

ASF GitHub Bot logged work on ARTEMIS-2806:
---

Author: ASF GitHub Bot
Created on: 16/Jun/20 02:36
Start Date: 16/Jun/20 02:36
Worklog Time Spent: 10m 
  Work Description: jbertram commented on a change in pull request #3185:
URL: https://github.com/apache/activemq-artemis/pull/3185#discussion_r440552355



##
File path: 
artemis-server/src/main/java/org/apache/activemq/artemis/core/management/impl/ActiveMQServerControlImpl.java
##
@@ -952,6 +952,7 @@ public void deployQueue(final String address,
   clearIO();
   try {
  server.createQueue(new QueueConfiguration(name)
+.setAddress(address)
 .setName(name)

Review comment:
   You can actually remove `setName(name)` as this is already taken care of 
by passing `name` to the constructor. The bug here is that `setName(name)` is 
actually called instead of `setAddress(address)`.





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: 446244)
Time Spent: 20m  (was: 10m)

> deployQueue missing address argument
> 
>
> Key: ARTEMIS-2806
> URL: https://issues.apache.org/jira/browse/ARTEMIS-2806
> Project: ActiveMQ Artemis
>  Issue Type: Bug
>Affects Versions: 2.12.0
>Reporter: Qihong Xu
>Priority: Minor
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> In ActiveMQServerControlImpl, deployQueue method is missing address argument 
> which results in creating non-matched addresses and queues. (For example, 
> using deployQueue to create a subscriber A_0 under existing address A, it 
> finally returns a new topic A_0 with a subscriber A_0 )



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


[jira] [Work logged] (ARTEMIS-2806) deployQueue missing address argument

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


 [ 
https://issues.apache.org/jira/browse/ARTEMIS-2806?focusedWorklogId=446229=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-446229
 ]

ASF GitHub Bot logged work on ARTEMIS-2806:
---

Author: ASF GitHub Bot
Created on: 16/Jun/20 02:10
Start Date: 16/Jun/20 02:10
Worklog Time Spent: 10m 
  Work Description: qihongxu opened a new pull request #3185:
URL: https://github.com/apache/activemq-artemis/pull/3185


   In ActiveMQServerControlImpl, deployQueue method is missing address argument 
which results in creating non-matched addresses and queues. (For example, using 
deployQueue to create a subscriber A_0 under existing address A, it finally 
returns a new topic A_0 with a subscriber A_0 )



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: 446229)
Remaining Estimate: 0h
Time Spent: 10m

> deployQueue missing address argument
> 
>
> Key: ARTEMIS-2806
> URL: https://issues.apache.org/jira/browse/ARTEMIS-2806
> Project: ActiveMQ Artemis
>  Issue Type: Bug
>Affects Versions: 2.12.0
>Reporter: Qihong Xu
>Priority: Minor
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> In ActiveMQServerControlImpl, deployQueue method is missing address argument 
> which results in creating non-matched addresses and queues. (For example, 
> using deployQueue to create a subscriber A_0 under existing address A, it 
> finally returns a new topic A_0 with a subscriber A_0 )



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


[jira] [Created] (ARTEMIS-2806) deployQueue missing address argument

2020-06-15 Thread Qihong Xu (Jira)
Qihong Xu created ARTEMIS-2806:
--

 Summary: deployQueue missing address argument
 Key: ARTEMIS-2806
 URL: https://issues.apache.org/jira/browse/ARTEMIS-2806
 Project: ActiveMQ Artemis
  Issue Type: Bug
Affects Versions: 2.12.0
Reporter: Qihong Xu


In ActiveMQServerControlImpl, deployQueue method is missing address argument 
which results in creating non-matched addresses and queues. (For example, using 
deployQueue to create a subscriber A_0 under existing address A, it finally 
returns a new topic A_0 with a subscriber A_0 )



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


[jira] [Commented] (ARTEMIS-2784) Could not decode properties for CoreMessage ... java.lang.IndexOutOfBoundsException

2020-06-15 Thread Noah Zucker (Jira)


[ 
https://issues.apache.org/jira/browse/ARTEMIS-2784?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17136109#comment-17136109
 ] 

Noah Zucker commented on ARTEMIS-2784:
--

Apologies, it's still in our backlog of things to try. Will update here when we 
get to it.

> Could not decode properties for CoreMessage ... 
> java.lang.IndexOutOfBoundsException
> ---
>
> Key: ARTEMIS-2784
> URL: https://issues.apache.org/jira/browse/ARTEMIS-2784
> Project: ActiveMQ Artemis
>  Issue Type: Bug
>Affects Versions: 2.12.0
>Reporter: Noah Zucker
>Priority: Major
>
> Our application is observing a large number of messages from Artemis 
> experiencing the following error
> Server Version: ArtemisMQ 2.12.0
> Client Version: org.hornetq hornetq-core 2.2.7.Final
> {code}
> Could not decode properties for 
> CoreMessage[messageID=0,durable=true,userID=null,priority=4, ti
>  mestamp=1590674773446,expiration=0,address=null, propertiesLocation=145: 
> java.lang.IndexOutOfBoundsException
> activemq-artemis 2020-05-28 14:09:41,364 WARN  
> [org.apache.activemq.artemis.core.message.impl.CoreMessage] Failed message 
> has messageID=0 and the following buffer:
>  activemq-artemis  +-+
>  activemq-artemis  |  0  1  2  3  4  5  6  7  8  9  a  b  c  d  e  f |
>  activemq-artemis 
> ++-++
>  activemq-artemis || 00 00 00 7d 00 00 00 66 00 66 7b 20 22 74 22 20 
> |...}...f.f{ "t" |
>  activemq-artemis |0010| 3a 20 22 63 6f 6d 2e 6e 6f 76 75 73 2e 61 6e 61 
> |: "com.novus.ana|
>  activemq-artemis |0020| 6c 79 74 69 63 73 2e 75 74 69 6c 2e 74 61 73 6b 
> |lytics.util.task|
>  activemq-artemis |0030| 73 2e 41 73 79 6e 63 43 6f 6e 73 75 6d 65 72 4d 
> |s.AsyncConsumerM|
>  activemq-artemis |0040| 65 73 73 61 67 65 22 20 2c 20 22 6d 73 67 22 20 
> |essage" , "msg" |
>  activemq-artemis |0050| 3a 20 22 66 65 61 74 75 72 65 46 6c 61 67 43 61 
> |: "featureFlagCa|
>  activemq-artemis |0060| 63 68 65 2e 69 6e 76 61 6c 69 64 61 74 65 22 7d 
> |che.invalidate"}|
>  activemq-artemis |0070| 00 00 00 f2 00 00 00 00 00 00 00 00 00 00 03 ff 
> ||
>  activemq-artemis |0080| 00 00 00 00 00 00 00 00 00 00 01 72 5b 9a d5 c6 
> |...r[...|
>  activemq-artemis |0090| 04 01 00 00 00 01 00 00 00 16 5f 00 48 00 51 00 
> |.._.H.Q.|
>  activemq-artemis |00a0| 5f 00 44 00 55 00 50 00 4c 00 5f 00 49 00 44 00 
> |_.D.U.P.L._.I.D.|
>  activemq-artemis |00b0| 0a 00 00 00 30 35 00 65 00 63 00 66 00 63 00 35 
> |05.e.c.f.c.5|
>  activemq-artemis |00c0| 00 35 00 35 00 64 00 39 00 31 00 33 00 62 00 32 
> |.5.5.d.9.1.3.b.2|
>  activemq-artemis |00d0| 00 34 00 65 00 66 00 30 00 32 00 32 00  
> |.4.e.f.0.2.2.   |
>  activemq-artemis 
> ++-++
> {code}
> Our client-side is also having trouble reading incoming text messages in its 
> onMessage callback. We encounter this with frequency: {{Unable to parse 
> string bodybuffer from Msg 'class 
> org.hornetq.core.client.impl.ClientMessageImpl' having id=4530593 !!! 
> Details: java.lang.IndexOutOfBoundsException: Not enough readable bytes - 
> Need 24, maximum is 20}}
> Apologies for being open ended on this, please let me know what additional 
> details to provide.



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


[jira] [Commented] (ARTEMIS-2803) NPE when trying to configure clustering

2020-06-15 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/ARTEMIS-2803?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17136086#comment-17136086
 ] 

ASF subversion and git services commented on ARTEMIS-2803:
--

Commit 9d4ec419358b3c462fd12a533e581df0f302c683 in activemq-artemis's branch 
refs/heads/master from Justin Bertram
[ https://gitbox.apache.org/repos/asf?p=activemq-artemis.git;h=9d4ec41 ]

ARTEMIS-2803 fix semantic change


> NPE when trying to configure clustering
> ---
>
> Key: ARTEMIS-2803
> URL: https://issues.apache.org/jira/browse/ARTEMIS-2803
> Project: ActiveMQ Artemis
>  Issue Type: Bug
>Affects Versions: 2.13.0
>Reporter: Alexander Trauzzi
>Assignee: Justin Bertram
>Priority: Minor
>  Time Spent: 0.5h
>  Remaining Estimate: 0h
>
> I've encountered an exception during a bit of exploratory/PoC work I'm doing 
> around clustering.
> I'm making this report mostly on the basis that I haven't been able to infer 
> any cause or course of action from the exception messages. Even if this is a 
> result of a misconfiguration, perhaps the feedback can be improved to make it 
> easier to troubleshoot?
> I have already collated the details over at a question of Stack Overflow, 
> which I've also attached as an external issue URL. 
> Here's the config of broker A:
> {code:xml}
> 
>  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
> xmlns:xi="http://www.w3.org/2001/XInclude; xsi:schemaLocation="urn:activemq 
> /schema/artemis-configuration.xsd">
>  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
> xsi:schemaLocation="urn:activemq:core ">
> 0.0.0.0
> true
> 
> ASYNCIO
> data/paging
> data/bindings
> data/journal
> 
> data/large-messages
> true
> 2
> 10
> 4096
> 10M
> 
> 2
> 
> 4096
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 5000
> 
> 90
> 
> true
> 12
> 6
> HALT
> 102
> 
> 
>  name="artemis">tcp://0.0.0.0:61616?tcpSendBufferSize=1048576;tcpReceiveBufferSize=1048576;amqpMinLargeMessageSize=102400;protocols=CORE;useEpoll=true;amqpCredits=1000;amqpLowCredits=300;amqpDuplicateDetection=true
> 
>  name="stomp">tcp://0.0.0.0:61613?tcpSendBufferSize=1048576;tcpReceiveBufferSize=1048576;protocols=STOMP;useEpoll=true
> 
> cluster
> REDACTED
> 
> 
> 
> 
> true
> 
> 
> 
> 
> 
> 
> 
> DLQ
> ExpiryQueue
> 0
> 
> -1
> 
> 10
> PAGE
> true
> true
> true
> true
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> {code}
> Here's the config of broker B:
> {code:xml}
> 
>  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
> xmlns:xi="http://www.w3.org/2001/XInclude; xsi:schemaLocation="urn:activemq 
> /schema/artemis-configuration.xsd">
>  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
> xsi:schemaLocation="urn:activemq:core ">
> 0.0.0.0
> true
> 
> ASYNCIO
> data/paging
> data/bindings
> data/journal
> 
> data/large-messages
> true
> 2
> 10
> 4096
> 10M
> 
> 2
> 
> 4096
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 5000
> 
> 90
> 
> true
> 12
> 6
> HALT
> 102
> 
>  name="stomp">tcp://0.0.0.0:61613?tcpSendBufferSize=1048576;tcpReceiveBufferSize=1048576;protocols=STOMP;useEpoll=true
> 
> 
> tcp://172.17.0.1:61616
> 
> cluster
> REDACTED
> 
> 
> /queue/global.regional
> global
> false
> 
> global
> 
> 
> 
> 
> 
> 
> 
> 0
> 
> 
> 

[jira] [Work logged] (ARTEMIS-2803) NPE when trying to configure clustering

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


 [ 
https://issues.apache.org/jira/browse/ARTEMIS-2803?focusedWorklogId=445993=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-445993
 ]

ASF GitHub Bot logged work on ARTEMIS-2803:
---

Author: ASF GitHub Bot
Created on: 15/Jun/20 18:21
Start Date: 15/Jun/20 18:21
Worklog Time Spent: 10m 
  Work Description: asfgit closed pull request #3184:
URL: https://github.com/apache/activemq-artemis/pull/3184


   



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: 445993)
Time Spent: 40m  (was: 0.5h)

> NPE when trying to configure clustering
> ---
>
> Key: ARTEMIS-2803
> URL: https://issues.apache.org/jira/browse/ARTEMIS-2803
> Project: ActiveMQ Artemis
>  Issue Type: Bug
>Affects Versions: 2.13.0
>Reporter: Alexander Trauzzi
>Assignee: Justin Bertram
>Priority: Minor
>  Time Spent: 40m
>  Remaining Estimate: 0h
>
> I've encountered an exception during a bit of exploratory/PoC work I'm doing 
> around clustering.
> I'm making this report mostly on the basis that I haven't been able to infer 
> any cause or course of action from the exception messages. Even if this is a 
> result of a misconfiguration, perhaps the feedback can be improved to make it 
> easier to troubleshoot?
> I have already collated the details over at a question of Stack Overflow, 
> which I've also attached as an external issue URL. 
> Here's the config of broker A:
> {code:xml}
> 
>  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
> xmlns:xi="http://www.w3.org/2001/XInclude; xsi:schemaLocation="urn:activemq 
> /schema/artemis-configuration.xsd">
>  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
> xsi:schemaLocation="urn:activemq:core ">
> 0.0.0.0
> true
> 
> ASYNCIO
> data/paging
> data/bindings
> data/journal
> 
> data/large-messages
> true
> 2
> 10
> 4096
> 10M
> 
> 2
> 
> 4096
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 5000
> 
> 90
> 
> true
> 12
> 6
> HALT
> 102
> 
> 
>  name="artemis">tcp://0.0.0.0:61616?tcpSendBufferSize=1048576;tcpReceiveBufferSize=1048576;amqpMinLargeMessageSize=102400;protocols=CORE;useEpoll=true;amqpCredits=1000;amqpLowCredits=300;amqpDuplicateDetection=true
> 
>  name="stomp">tcp://0.0.0.0:61613?tcpSendBufferSize=1048576;tcpReceiveBufferSize=1048576;protocols=STOMP;useEpoll=true
> 
> cluster
> REDACTED
> 
> 
> 
> 
> true
> 
> 
> 
> 
> 
> 
> 
> DLQ
> ExpiryQueue
> 0
> 
> -1
> 
> 10
> PAGE
> true
> true
> true
> true
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> {code}
> Here's the config of broker B:
> {code:xml}
> 
>  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
> xmlns:xi="http://www.w3.org/2001/XInclude; xsi:schemaLocation="urn:activemq 
> /schema/artemis-configuration.xsd">
>  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
> xsi:schemaLocation="urn:activemq:core ">
> 0.0.0.0
> true
> 
> ASYNCIO
> data/paging
> data/bindings
> data/journal
> 
> data/large-messages
> true
> 2
> 10
> 4096
> 10M
> 
> 2
> 
> 4096
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 5000
> 
> 90
> 
> true
> 12
> 6
> HALT
> 102
> 
>  

[jira] [Updated] (ARTEMIS-2805) Wrong day-of-month in web console

2020-06-15 Thread Justin Bertram (Jira)


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

Justin Bertram updated ARTEMIS-2805:

Description: The web console displays the day of the _week_ instead of the 
day of the month in the timestamp column while browsing a queue from the web 
console.

> Wrong day-of-month in web console
> -
>
> Key: ARTEMIS-2805
> URL: https://issues.apache.org/jira/browse/ARTEMIS-2805
> Project: ActiveMQ Artemis
>  Issue Type: Bug
>Reporter: Justin Bertram
>Assignee: Justin Bertram
>Priority: Major
> Fix For: 2.14.0
>
>
> The web console displays the day of the _week_ instead of the day of the 
> month in the timestamp column while browsing a queue from the web console.



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


[jira] [Work logged] (ARTEMIS-2804) Human readable timestamp is incorrectly parsed in web console

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


 [ 
https://issues.apache.org/jira/browse/ARTEMIS-2804?focusedWorklogId=445961=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-445961
 ]

ASF GitHub Bot logged work on ARTEMIS-2804:
---

Author: ASF GitHub Bot
Created on: 15/Jun/20 17:26
Start Date: 15/Jun/20 17:26
Worklog Time Spent: 10m 
  Work Description: avi5kdonrh commented on pull request #3181:
URL: https://github.com/apache/activemq-artemis/pull/3181#issuecomment-644266942


   @jbertram, @franz1981  Thank you very much. Next time I'll keep the 
guidelines in mind.



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: 445961)
Time Spent: 1h  (was: 50m)

> Human readable timestamp is incorrectly parsed in web console
> -
>
> Key: ARTEMIS-2804
> URL: https://issues.apache.org/jira/browse/ARTEMIS-2804
> Project: ActiveMQ Artemis
>  Issue Type: Bug
>  Components: Web Console
>Affects Versions: 2.13.0
>Reporter: Avinash Dongre
>Priority: Minor
>  Labels: pull-request-available
> Fix For: 2.14.0
>
> Attachments: incorrect_timestamp.PNG
>
>  Time Spent: 1h
>  Remaining Estimate: 0h
>
> When a queue is browsed using the web console, the DAY is incorrect in the 
> human-readable timestamp. Please see the attachment.



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


[jira] [Resolved] (ARTEMIS-2805) Wrong day-of-month in web console

2020-06-15 Thread Justin Bertram (Jira)


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

Justin Bertram resolved ARTEMIS-2805.
-
Fix Version/s: 2.14.0
   Resolution: Fixed

> Wrong day-of-month in web console
> -
>
> Key: ARTEMIS-2805
> URL: https://issues.apache.org/jira/browse/ARTEMIS-2805
> Project: ActiveMQ Artemis
>  Issue Type: Bug
>Reporter: Justin Bertram
>Assignee: Justin Bertram
>Priority: Major
> Fix For: 2.14.0
>
>




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


[jira] [Work logged] (ARTEMIS-2804) Human readable timestamp is incorrectly parsed in web console

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


 [ 
https://issues.apache.org/jira/browse/ARTEMIS-2804?focusedWorklogId=445959=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-445959
 ]

ASF GitHub Bot logged work on ARTEMIS-2804:
---

Author: ASF GitHub Bot
Created on: 15/Jun/20 17:23
Start Date: 15/Jun/20 17:23
Worklog Time Spent: 10m 
  Work Description: jbertram commented on pull request #3181:
URL: https://github.com/apache/activemq-artemis/pull/3181#issuecomment-644265280


   @avi5kdonrh, don't worry about the commit message. I fixed it during merge. 
Thanks for the fix!



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: 445959)
Time Spent: 50m  (was: 40m)

> Human readable timestamp is incorrectly parsed in web console
> -
>
> Key: ARTEMIS-2804
> URL: https://issues.apache.org/jira/browse/ARTEMIS-2804
> Project: ActiveMQ Artemis
>  Issue Type: Bug
>  Components: Web Console
>Affects Versions: 2.13.0
>Reporter: Avinash Dongre
>Priority: Minor
>  Labels: pull-request-available
> Fix For: 2.14.0
>
> Attachments: incorrect_timestamp.PNG
>
>  Time Spent: 50m
>  Remaining Estimate: 0h
>
> When a queue is browsed using the web console, the DAY is incorrect in the 
> human-readable timestamp. Please see the attachment.



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


[jira] [Work logged] (ARTEMIS-2804) Human readable timestamp is incorrectly parsed in web console

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


 [ 
https://issues.apache.org/jira/browse/ARTEMIS-2804?focusedWorklogId=445958=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-445958
 ]

ASF GitHub Bot logged work on ARTEMIS-2804:
---

Author: ASF GitHub Bot
Created on: 15/Jun/20 17:21
Start Date: 15/Jun/20 17:21
Worklog Time Spent: 10m 
  Work Description: asfgit closed pull request #3181:
URL: https://github.com/apache/activemq-artemis/pull/3181


   



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: 445958)
Time Spent: 40m  (was: 0.5h)

> Human readable timestamp is incorrectly parsed in web console
> -
>
> Key: ARTEMIS-2804
> URL: https://issues.apache.org/jira/browse/ARTEMIS-2804
> Project: ActiveMQ Artemis
>  Issue Type: Bug
>  Components: Web Console
>Affects Versions: 2.13.0
>Reporter: Avinash Dongre
>Priority: Minor
>  Labels: pull-request-available
> Fix For: 2.14.0
>
> Attachments: incorrect_timestamp.PNG
>
>  Time Spent: 40m
>  Remaining Estimate: 0h
>
> When a queue is browsed using the web console, the DAY is incorrect in the 
> human-readable timestamp. Please see the attachment.



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


[jira] [Commented] (ARTEMIS-2805) Wrong day-of-month in web console

2020-06-15 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/ARTEMIS-2805?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17136037#comment-17136037
 ] 

ASF subversion and git services commented on ARTEMIS-2805:
--

Commit d6655135e47a7bdce12ce78cf60ccf20b6b7e3f4 in activemq-artemis's branch 
refs/heads/master from avi5kdonrh
[ https://gitbox.apache.org/repos/asf?p=activemq-artemis.git;h=d665513 ]

ARTEMIS-2805 wrong day-of-month in web console

The web console displays the day of the week instead of the day of the
month in the timestamp column while browsing a queue from the web
console. This commit fixes this by calling the getDate method instead of
the getDay method on the date object.


> Wrong day-of-month in web console
> -
>
> Key: ARTEMIS-2805
> URL: https://issues.apache.org/jira/browse/ARTEMIS-2805
> Project: ActiveMQ Artemis
>  Issue Type: Bug
>Reporter: Justin Bertram
>Assignee: Justin Bertram
>Priority: Major
>




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


[jira] [Updated] (ARTEMIS-2805) Wrong day-of-month in web console

2020-06-15 Thread Justin Bertram (Jira)


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

Justin Bertram updated ARTEMIS-2805:

Summary: Wrong day-of-month in web console  (was: Wrong day-of-week in web 
console)

> Wrong day-of-month in web console
> -
>
> Key: ARTEMIS-2805
> URL: https://issues.apache.org/jira/browse/ARTEMIS-2805
> Project: ActiveMQ Artemis
>  Issue Type: Bug
>Reporter: Justin Bertram
>Assignee: Justin Bertram
>Priority: Major
>




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


[jira] [Created] (ARTEMIS-2805) Wrong day-of-week in web console

2020-06-15 Thread Justin Bertram (Jira)
Justin Bertram created ARTEMIS-2805:
---

 Summary: Wrong day-of-week in web console
 Key: ARTEMIS-2805
 URL: https://issues.apache.org/jira/browse/ARTEMIS-2805
 Project: ActiveMQ Artemis
  Issue Type: Bug
Reporter: Justin Bertram
Assignee: Justin Bertram






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


[jira] [Work logged] (ARTEMIS-2109) enable building Artemis with JDK 11+

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


 [ 
https://issues.apache.org/jira/browse/ARTEMIS-2109?focusedWorklogId=445954=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-445954
 ]

ASF GitHub Bot logged work on ARTEMIS-2109:
---

Author: ASF GitHub Bot
Created on: 15/Jun/20 17:16
Start Date: 15/Jun/20 17:16
Worklog Time Spent: 10m 
  Work Description: gemmellr commented on pull request #3183:
URL: https://github.com/apache/activemq-artemis/pull/3183#issuecomment-644262028


   I reverted the plugin version changes on master in 
https://github.com/apache/activemq-artemis/commit/61e920d010f94894b04a1b43a3880a0cdbdd629d.
   
   I had noticed a NPE failure building the assembly during "mvn clean package" 
(but not "mvn clean install"), which some search suggeted relates to use of the 
enforcer plugin 1.4.1 in modules with pom packaging. That was the effective 
change from removing the 1.4 version definitions as the pluginManagement 
already has a 1.4.1 entry.
   
   Must be some sort of weird interaction with other bits in use as well, since 
we use 1.4.1+assembly in lots of other places, but anyway...I've restored that 
bit to how it was before to put things as they were.



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: 445954)
Time Spent: 1h 10m  (was: 1h)

> enable building Artemis with JDK 11+
> 
>
> Key: ARTEMIS-2109
> URL: https://issues.apache.org/jira/browse/ARTEMIS-2109
> Project: ActiveMQ Artemis
>  Issue Type: Improvement
>  Components: Broker
>Affects Versions: 2.13.0
>Reporter: Miroslav Novak
>Assignee: Robbie Gemmell
>Priority: Major
> Fix For: 2.14.0
>
>  Time Spent: 1h 10m
>  Remaining Estimate: 0h
>
> Artemis cannot be build with JDK 11:
> {code}
> $ java -version
> openjdk version "11" 2018-09-25
> OpenJDK Runtime Environment 18.9 (build 11+28)
> OpenJDK 64-Bit Server VM 18.9 (build 11+28, mixed mode)
> {code}
> Build fails with:
> {code}
> $ mvn clean install
> ...
> [INFO] 
> 
> [INFO] Building ActiveMQ Artemis Parent 2.7.0-SNAPSHOT
> [INFO] 
> 
> [INFO] 
> [INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ artemis-pom ---
> [INFO] Deleting /home/mnovak/projects/activemq-artemis/target
> [INFO] 
> [INFO] --- maven-enforcer-plugin:1.4:enforce (enforce-maven) @ artemis-pom ---
> [INFO] 
> [INFO] --- maven-enforcer-plugin:1.4:enforce (enforce-java) @ artemis-pom ---
> [INFO] 
> 
> [INFO] Reactor Summary:
> [INFO] 
> [INFO] ActiveMQ Artemis Parent  FAILURE [  0.302 
> s]
> [INFO] ActiveMQ Artemis Commons ... SKIPPED
> [INFO] ActiveMQ Artemis Core Client ... SKIPPED
> [INFO] ActiveMQ Artemis Selector Implementation ... SKIPPED
> [INFO] ActiveMQ Artemis JMS Client  SKIPPED
> [INFO] ActiveMQ Artemis Native POM  SKIPPED
> [INFO] ActiveMQ Artemis Journal ... SKIPPED
> [INFO] ActiveMQ Artemis JDBC Store  SKIPPED
> [INFO] ActiveMQ Artemis Server  SKIPPED
> [INFO] ActiveMQ Artemis Protocols . SKIPPED
> [INFO] ActiveMQ Artemis AMQP Protocol . SKIPPED
> [INFO] ActiveMQ Artemis STOMP Protocol  SKIPPED
> [INFO] ActiveMQ Artemis OpenWire Protocol . SKIPPED
> [INFO] ActiveMQ Artemis HQClient Protocol . SKIPPED
> [INFO] ActiveMQ Artemis HornetQ Protocol .. SKIPPED
> [INFO] ActiveMQ Artemis MQTT Protocol . SKIPPED
> [INFO] ActiveMQ Artemis DTO ... SKIPPED
> [INFO] ActiveMQ Artemis Service Extensions  SKIPPED
> [INFO] ActiveMQ Artemis JMS Server  SKIPPED
> [INFO] ActiveMQ Artemis CDI Integration ... SKIPPED
> [INFO] ActiveMQ Artemis Boot .. SKIPPED
> [INFO] ActiveMQ Artemis Tools . SKIPPED
> [INFO] ActiveMQ Artemis CLI ... SKIPPED
> [INFO] ActiveMQ Artemis Web ... SKIPPED
> [INFO] ActiveMQ Artemis Web ... SKIPPED
> [INFO] ActiveMQ Artemis Core Client All ... 

[jira] [Work logged] (ARTEMIS-2804) Human readable timestamp is incorrectly parsed in web console

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


 [ 
https://issues.apache.org/jira/browse/ARTEMIS-2804?focusedWorklogId=445951=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-445951
 ]

ASF GitHub Bot logged work on ARTEMIS-2804:
---

Author: ASF GitHub Bot
Created on: 15/Jun/20 17:14
Start Date: 15/Jun/20 17:14
Worklog Time Spent: 10m 
  Work Description: jbertram commented on pull request #3181:
URL: https://github.com/apache/activemq-artemis/pull/3181#issuecomment-644261143


   @avi5kdonrh, can you update the commit message to follow [the pattern 
outlined in the hacking 
guide](https://github.com/apache/activemq-artemis/blob/master/docs/hacking-guide/en/code.md#commitMessageDetails)?



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: 445951)
Time Spent: 0.5h  (was: 20m)

> Human readable timestamp is incorrectly parsed in web console
> -
>
> Key: ARTEMIS-2804
> URL: https://issues.apache.org/jira/browse/ARTEMIS-2804
> Project: ActiveMQ Artemis
>  Issue Type: Bug
>  Components: Web Console
>Affects Versions: 2.13.0
>Reporter: Avinash Dongre
>Priority: Minor
>  Labels: pull-request-available
> Fix For: 2.14.0
>
> Attachments: incorrect_timestamp.PNG
>
>  Time Spent: 0.5h
>  Remaining Estimate: 0h
>
> When a queue is browsed using the web console, the DAY is incorrect in the 
> human-readable timestamp. Please see the attachment.



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


[jira] [Commented] (ARTEMIS-2109) enable building Artemis with JDK 11+

2020-06-15 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/ARTEMIS-2109?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17136027#comment-17136027
 ] 

ASF subversion and git services commented on ARTEMIS-2109:
--

Commit 61e920d010f94894b04a1b43a3880a0cdbdd629d in activemq-artemis's branch 
refs/heads/master from Robbie Gemmell
[ https://gitbox.apache.org/repos/asf?p=activemq-artemis.git;h=61e920d ]

ARTEMIS-2109: restore plugin versions removed in 
6e2b5dc8f2a8c62efd9bf8b14e0a8b3efa128de1 / #3183

The plugin-management provided 1.4.1 enforcer version can it seems interact 
oddly with the assembly plugin depending on what else is in use, leading to an 
NPE in some cases.


> enable building Artemis with JDK 11+
> 
>
> Key: ARTEMIS-2109
> URL: https://issues.apache.org/jira/browse/ARTEMIS-2109
> Project: ActiveMQ Artemis
>  Issue Type: Improvement
>  Components: Broker
>Affects Versions: 2.13.0
>Reporter: Miroslav Novak
>Assignee: Robbie Gemmell
>Priority: Major
> Fix For: 2.14.0
>
>  Time Spent: 1h
>  Remaining Estimate: 0h
>
> Artemis cannot be build with JDK 11:
> {code}
> $ java -version
> openjdk version "11" 2018-09-25
> OpenJDK Runtime Environment 18.9 (build 11+28)
> OpenJDK 64-Bit Server VM 18.9 (build 11+28, mixed mode)
> {code}
> Build fails with:
> {code}
> $ mvn clean install
> ...
> [INFO] 
> 
> [INFO] Building ActiveMQ Artemis Parent 2.7.0-SNAPSHOT
> [INFO] 
> 
> [INFO] 
> [INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ artemis-pom ---
> [INFO] Deleting /home/mnovak/projects/activemq-artemis/target
> [INFO] 
> [INFO] --- maven-enforcer-plugin:1.4:enforce (enforce-maven) @ artemis-pom ---
> [INFO] 
> [INFO] --- maven-enforcer-plugin:1.4:enforce (enforce-java) @ artemis-pom ---
> [INFO] 
> 
> [INFO] Reactor Summary:
> [INFO] 
> [INFO] ActiveMQ Artemis Parent  FAILURE [  0.302 
> s]
> [INFO] ActiveMQ Artemis Commons ... SKIPPED
> [INFO] ActiveMQ Artemis Core Client ... SKIPPED
> [INFO] ActiveMQ Artemis Selector Implementation ... SKIPPED
> [INFO] ActiveMQ Artemis JMS Client  SKIPPED
> [INFO] ActiveMQ Artemis Native POM  SKIPPED
> [INFO] ActiveMQ Artemis Journal ... SKIPPED
> [INFO] ActiveMQ Artemis JDBC Store  SKIPPED
> [INFO] ActiveMQ Artemis Server  SKIPPED
> [INFO] ActiveMQ Artemis Protocols . SKIPPED
> [INFO] ActiveMQ Artemis AMQP Protocol . SKIPPED
> [INFO] ActiveMQ Artemis STOMP Protocol  SKIPPED
> [INFO] ActiveMQ Artemis OpenWire Protocol . SKIPPED
> [INFO] ActiveMQ Artemis HQClient Protocol . SKIPPED
> [INFO] ActiveMQ Artemis HornetQ Protocol .. SKIPPED
> [INFO] ActiveMQ Artemis MQTT Protocol . SKIPPED
> [INFO] ActiveMQ Artemis DTO ... SKIPPED
> [INFO] ActiveMQ Artemis Service Extensions  SKIPPED
> [INFO] ActiveMQ Artemis JMS Server  SKIPPED
> [INFO] ActiveMQ Artemis CDI Integration ... SKIPPED
> [INFO] ActiveMQ Artemis Boot .. SKIPPED
> [INFO] ActiveMQ Artemis Tools . SKIPPED
> [INFO] ActiveMQ Artemis CLI ... SKIPPED
> [INFO] ActiveMQ Artemis Web ... SKIPPED
> [INFO] ActiveMQ Artemis Web ... SKIPPED
> [INFO] ActiveMQ Artemis Core Client All ... SKIPPED
> [INFO] ActiveMQ Artemis Client OSGi ... SKIPPED
> [INFO] ActiveMQ Artemis JUnit Rules ... SKIPPED
> [INFO] ActiveMQ Artemis JMS Client All  SKIPPED
> [INFO] ActiveMQ Artemis JMS Client OSGi ... SKIPPED
> [INFO] ActiveMQ Artemis RAR POM ... SKIPPED
> [INFO] ActiveMQ Artemis REST Interface Implementation . SKIPPED
> [INFO] ActiveMQ Artemis Maven Plugin .. SKIPPED
> [INFO] ActiveMQ Artemis Server OSGi ... SKIPPED
> [INFO] ActiveMQ Artemis Cons .. SKIPPED
> [INFO] ActiveMQ Artemis HawtIO Branding ... SKIPPED
> [INFO] ActiveMQ Artemis HawtIO Plugin . SKIPPED
> [INFO] ActiveMQ Artemis Console ... SKIPPED
> [INFO] ActiveMQ Artemis Spring Integration  SKIPPED
> [INFO] Apache ActiveMQ Artemis 

[jira] [Work logged] (ARTEMIS-2803) NPE when trying to configure clustering

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


 [ 
https://issues.apache.org/jira/browse/ARTEMIS-2803?focusedWorklogId=445942=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-445942
 ]

ASF GitHub Bot logged work on ARTEMIS-2803:
---

Author: ASF GitHub Bot
Created on: 15/Jun/20 17:06
Start Date: 15/Jun/20 17:06
Worklog Time Spent: 10m 
  Work Description: jbertram opened a new pull request #3184:
URL: https://github.com/apache/activemq-artemis/pull/3184


   



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: 445942)
Time Spent: 0.5h  (was: 20m)

> NPE when trying to configure clustering
> ---
>
> Key: ARTEMIS-2803
> URL: https://issues.apache.org/jira/browse/ARTEMIS-2803
> Project: ActiveMQ Artemis
>  Issue Type: Bug
>Affects Versions: 2.13.0
>Reporter: Alexander Trauzzi
>Assignee: Justin Bertram
>Priority: Minor
>  Time Spent: 0.5h
>  Remaining Estimate: 0h
>
> I've encountered an exception during a bit of exploratory/PoC work I'm doing 
> around clustering.
> I'm making this report mostly on the basis that I haven't been able to infer 
> any cause or course of action from the exception messages. Even if this is a 
> result of a misconfiguration, perhaps the feedback can be improved to make it 
> easier to troubleshoot?
> I have already collated the details over at a question of Stack Overflow, 
> which I've also attached as an external issue URL. 
> Here's the config of broker A:
> {code:xml}
> 
>  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
> xmlns:xi="http://www.w3.org/2001/XInclude; xsi:schemaLocation="urn:activemq 
> /schema/artemis-configuration.xsd">
>  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
> xsi:schemaLocation="urn:activemq:core ">
> 0.0.0.0
> true
> 
> ASYNCIO
> data/paging
> data/bindings
> data/journal
> 
> data/large-messages
> true
> 2
> 10
> 4096
> 10M
> 
> 2
> 
> 4096
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 5000
> 
> 90
> 
> true
> 12
> 6
> HALT
> 102
> 
> 
>  name="artemis">tcp://0.0.0.0:61616?tcpSendBufferSize=1048576;tcpReceiveBufferSize=1048576;amqpMinLargeMessageSize=102400;protocols=CORE;useEpoll=true;amqpCredits=1000;amqpLowCredits=300;amqpDuplicateDetection=true
> 
>  name="stomp">tcp://0.0.0.0:61613?tcpSendBufferSize=1048576;tcpReceiveBufferSize=1048576;protocols=STOMP;useEpoll=true
> 
> cluster
> REDACTED
> 
> 
> 
> 
> true
> 
> 
> 
> 
> 
> 
> 
> DLQ
> ExpiryQueue
> 0
> 
> -1
> 
> 10
> PAGE
> true
> true
> true
> true
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> {code}
> Here's the config of broker B:
> {code:xml}
> 
>  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
> xmlns:xi="http://www.w3.org/2001/XInclude; xsi:schemaLocation="urn:activemq 
> /schema/artemis-configuration.xsd">
>  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
> xsi:schemaLocation="urn:activemq:core ">
> 0.0.0.0
> true
> 
> ASYNCIO
> data/paging
> data/bindings
> data/journal
> 
> data/large-messages
> true
> 2
> 10
> 4096
> 10M
> 
> 2
> 
> 4096
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 5000
> 
> 90
> 
> true
> 12
> 6
> HALT
> 102
> 
>  

[jira] [Work logged] (ARTEMIS-2109) enable building Artemis with JDK 11+

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


 [ 
https://issues.apache.org/jira/browse/ARTEMIS-2109?focusedWorklogId=445925=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-445925
 ]

ASF GitHub Bot logged work on ARTEMIS-2109:
---

Author: ASF GitHub Bot
Created on: 15/Jun/20 16:39
Start Date: 15/Jun/20 16:39
Worklog Time Spent: 10m 
  Work Description: asfgit closed pull request #3183:
URL: https://github.com/apache/activemq-artemis/pull/3183


   



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: 445925)
Time Spent: 1h  (was: 50m)

> enable building Artemis with JDK 11+
> 
>
> Key: ARTEMIS-2109
> URL: https://issues.apache.org/jira/browse/ARTEMIS-2109
> Project: ActiveMQ Artemis
>  Issue Type: Improvement
>  Components: Broker
>Affects Versions: 2.13.0
>Reporter: Miroslav Novak
>Assignee: Robbie Gemmell
>Priority: Major
> Fix For: 2.14.0
>
>  Time Spent: 1h
>  Remaining Estimate: 0h
>
> Artemis cannot be build with JDK 11:
> {code}
> $ java -version
> openjdk version "11" 2018-09-25
> OpenJDK Runtime Environment 18.9 (build 11+28)
> OpenJDK 64-Bit Server VM 18.9 (build 11+28, mixed mode)
> {code}
> Build fails with:
> {code}
> $ mvn clean install
> ...
> [INFO] 
> 
> [INFO] Building ActiveMQ Artemis Parent 2.7.0-SNAPSHOT
> [INFO] 
> 
> [INFO] 
> [INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ artemis-pom ---
> [INFO] Deleting /home/mnovak/projects/activemq-artemis/target
> [INFO] 
> [INFO] --- maven-enforcer-plugin:1.4:enforce (enforce-maven) @ artemis-pom ---
> [INFO] 
> [INFO] --- maven-enforcer-plugin:1.4:enforce (enforce-java) @ artemis-pom ---
> [INFO] 
> 
> [INFO] Reactor Summary:
> [INFO] 
> [INFO] ActiveMQ Artemis Parent  FAILURE [  0.302 
> s]
> [INFO] ActiveMQ Artemis Commons ... SKIPPED
> [INFO] ActiveMQ Artemis Core Client ... SKIPPED
> [INFO] ActiveMQ Artemis Selector Implementation ... SKIPPED
> [INFO] ActiveMQ Artemis JMS Client  SKIPPED
> [INFO] ActiveMQ Artemis Native POM  SKIPPED
> [INFO] ActiveMQ Artemis Journal ... SKIPPED
> [INFO] ActiveMQ Artemis JDBC Store  SKIPPED
> [INFO] ActiveMQ Artemis Server  SKIPPED
> [INFO] ActiveMQ Artemis Protocols . SKIPPED
> [INFO] ActiveMQ Artemis AMQP Protocol . SKIPPED
> [INFO] ActiveMQ Artemis STOMP Protocol  SKIPPED
> [INFO] ActiveMQ Artemis OpenWire Protocol . SKIPPED
> [INFO] ActiveMQ Artemis HQClient Protocol . SKIPPED
> [INFO] ActiveMQ Artemis HornetQ Protocol .. SKIPPED
> [INFO] ActiveMQ Artemis MQTT Protocol . SKIPPED
> [INFO] ActiveMQ Artemis DTO ... SKIPPED
> [INFO] ActiveMQ Artemis Service Extensions  SKIPPED
> [INFO] ActiveMQ Artemis JMS Server  SKIPPED
> [INFO] ActiveMQ Artemis CDI Integration ... SKIPPED
> [INFO] ActiveMQ Artemis Boot .. SKIPPED
> [INFO] ActiveMQ Artemis Tools . SKIPPED
> [INFO] ActiveMQ Artemis CLI ... SKIPPED
> [INFO] ActiveMQ Artemis Web ... SKIPPED
> [INFO] ActiveMQ Artemis Web ... SKIPPED
> [INFO] ActiveMQ Artemis Core Client All ... SKIPPED
> [INFO] ActiveMQ Artemis Client OSGi ... SKIPPED
> [INFO] ActiveMQ Artemis JUnit Rules ... SKIPPED
> [INFO] ActiveMQ Artemis JMS Client All  SKIPPED
> [INFO] ActiveMQ Artemis JMS Client OSGi ... SKIPPED
> [INFO] ActiveMQ Artemis RAR POM ... SKIPPED
> [INFO] ActiveMQ Artemis REST Interface Implementation . SKIPPED
> [INFO] ActiveMQ Artemis Maven Plugin .. SKIPPED
> [INFO] ActiveMQ Artemis Server OSGi ... SKIPPED
> [INFO] ActiveMQ Artemis Cons .. SKIPPED
> [INFO] ActiveMQ Artemis HawtIO Branding ... SKIPPED
> [INFO] ActiveMQ Artemis HawtIO Plugin 

[jira] [Commented] (ARTEMIS-2109) enable building Artemis with JDK 11+

2020-06-15 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/ARTEMIS-2109?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17136008#comment-17136008
 ] 

ASF subversion and git services commented on ARTEMIS-2109:
--

Commit 6e2b5dc8f2a8c62efd9bf8b14e0a8b3efa128de1 in activemq-artemis's branch 
refs/heads/master from Robbie Gemmell
[ https://gitbox.apache.org/repos/asf?p=activemq-artemis.git;h=6e2b5dc ]

ARTEMIS-2109: require JDK 8 for release, enforce use of JDK8 or 11+ otherwise, 
rename profiles for consistency and clarity, remove superflous/incorrect 
managed plugin versions

Update CI to only use the release profile for building examples on JDK8, use 
noRun profile otherwise. Does the exact same in terms of setting properties for 
the examples build, just doesnt engage the parent release profile which 
enforces JDK8.


> enable building Artemis with JDK 11+
> 
>
> Key: ARTEMIS-2109
> URL: https://issues.apache.org/jira/browse/ARTEMIS-2109
> Project: ActiveMQ Artemis
>  Issue Type: Improvement
>  Components: Broker
>Affects Versions: 2.13.0
>Reporter: Miroslav Novak
>Assignee: Robbie Gemmell
>Priority: Major
> Fix For: 2.14.0
>
>  Time Spent: 50m
>  Remaining Estimate: 0h
>
> Artemis cannot be build with JDK 11:
> {code}
> $ java -version
> openjdk version "11" 2018-09-25
> OpenJDK Runtime Environment 18.9 (build 11+28)
> OpenJDK 64-Bit Server VM 18.9 (build 11+28, mixed mode)
> {code}
> Build fails with:
> {code}
> $ mvn clean install
> ...
> [INFO] 
> 
> [INFO] Building ActiveMQ Artemis Parent 2.7.0-SNAPSHOT
> [INFO] 
> 
> [INFO] 
> [INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ artemis-pom ---
> [INFO] Deleting /home/mnovak/projects/activemq-artemis/target
> [INFO] 
> [INFO] --- maven-enforcer-plugin:1.4:enforce (enforce-maven) @ artemis-pom ---
> [INFO] 
> [INFO] --- maven-enforcer-plugin:1.4:enforce (enforce-java) @ artemis-pom ---
> [INFO] 
> 
> [INFO] Reactor Summary:
> [INFO] 
> [INFO] ActiveMQ Artemis Parent  FAILURE [  0.302 
> s]
> [INFO] ActiveMQ Artemis Commons ... SKIPPED
> [INFO] ActiveMQ Artemis Core Client ... SKIPPED
> [INFO] ActiveMQ Artemis Selector Implementation ... SKIPPED
> [INFO] ActiveMQ Artemis JMS Client  SKIPPED
> [INFO] ActiveMQ Artemis Native POM  SKIPPED
> [INFO] ActiveMQ Artemis Journal ... SKIPPED
> [INFO] ActiveMQ Artemis JDBC Store  SKIPPED
> [INFO] ActiveMQ Artemis Server  SKIPPED
> [INFO] ActiveMQ Artemis Protocols . SKIPPED
> [INFO] ActiveMQ Artemis AMQP Protocol . SKIPPED
> [INFO] ActiveMQ Artemis STOMP Protocol  SKIPPED
> [INFO] ActiveMQ Artemis OpenWire Protocol . SKIPPED
> [INFO] ActiveMQ Artemis HQClient Protocol . SKIPPED
> [INFO] ActiveMQ Artemis HornetQ Protocol .. SKIPPED
> [INFO] ActiveMQ Artemis MQTT Protocol . SKIPPED
> [INFO] ActiveMQ Artemis DTO ... SKIPPED
> [INFO] ActiveMQ Artemis Service Extensions  SKIPPED
> [INFO] ActiveMQ Artemis JMS Server  SKIPPED
> [INFO] ActiveMQ Artemis CDI Integration ... SKIPPED
> [INFO] ActiveMQ Artemis Boot .. SKIPPED
> [INFO] ActiveMQ Artemis Tools . SKIPPED
> [INFO] ActiveMQ Artemis CLI ... SKIPPED
> [INFO] ActiveMQ Artemis Web ... SKIPPED
> [INFO] ActiveMQ Artemis Web ... SKIPPED
> [INFO] ActiveMQ Artemis Core Client All ... SKIPPED
> [INFO] ActiveMQ Artemis Client OSGi ... SKIPPED
> [INFO] ActiveMQ Artemis JUnit Rules ... SKIPPED
> [INFO] ActiveMQ Artemis JMS Client All  SKIPPED
> [INFO] ActiveMQ Artemis JMS Client OSGi ... SKIPPED
> [INFO] ActiveMQ Artemis RAR POM ... SKIPPED
> [INFO] ActiveMQ Artemis REST Interface Implementation . SKIPPED
> [INFO] ActiveMQ Artemis Maven Plugin .. SKIPPED
> [INFO] ActiveMQ Artemis Server OSGi ... SKIPPED
> [INFO] ActiveMQ Artemis Cons .. SKIPPED
> [INFO] ActiveMQ Artemis HawtIO Branding ... SKIPPED
> [INFO] ActiveMQ Artemis HawtIO Plugin . SKIPPED
> [INFO] ActiveMQ Artemis 

[jira] [Closed] (ARTEMIS-2800) Artemis Native / libaio crashing under certain kernel versions

2020-06-15 Thread Clebert Suconic (Jira)


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

Clebert Suconic closed ARTEMIS-2800.

Resolution: Fixed

> Artemis Native / libaio crashing under certain kernel versions
> --
>
> Key: ARTEMIS-2800
> URL: https://issues.apache.org/jira/browse/ARTEMIS-2800
> Project: ActiveMQ Artemis
>  Issue Type: Bug
>  Components: ActiveMQ-Artemis-Native
>Reporter: Clebert Suconic
>Assignee: Clebert Suconic
>Priority: Major
> Fix For: native-1.1.0
>
>
> Due to a bug on certain Linux kernels I recently found: 
> [https://bugzilla.redhat.com/show_bug.cgi?id=1845326]
> Artemis native would crash. Particularly with RHEL 7.8 (or possibly with the 
> equivalent from CentOS.. and perhaps other distributions would also include a 
> similar issue.
>  
> I am adding work arounds this issue on artemis-native
>  
> There is also a Redhat Jira that has very relevant information to this issue:
> https://issues.redhat.com/browse/ENTMQBR-3642



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


[jira] [Updated] (ARTEMIS-2800) Artemis Native / libaio crashing under certain kernel versions

2020-06-15 Thread Clebert Suconic (Jira)


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

Clebert Suconic updated ARTEMIS-2800:
-
Fix Version/s: native-1.1.0

> Artemis Native / libaio crashing under certain kernel versions
> --
>
> Key: ARTEMIS-2800
> URL: https://issues.apache.org/jira/browse/ARTEMIS-2800
> Project: ActiveMQ Artemis
>  Issue Type: Bug
>  Components: ActiveMQ-Artemis-Native
>Reporter: Clebert Suconic
>Assignee: Clebert Suconic
>Priority: Major
> Fix For: native-1.1.0
>
>
> Due to a bug on certain Linux kernels I recently found: 
> [https://bugzilla.redhat.com/show_bug.cgi?id=1845326]
> Artemis native would crash. Particularly with RHEL 7.8 (or possibly with the 
> equivalent from CentOS.. and perhaps other distributions would also include a 
> similar issue.
>  
> I am adding work arounds this issue on artemis-native
>  
> There is also a Redhat Jira that has very relevant information to this issue:
> https://issues.redhat.com/browse/ENTMQBR-3642



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


[jira] [Work started] (ARTEMIS-2109) enable building Artemis with JDK 11+

2020-06-15 Thread Robbie Gemmell (Jira)


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

Work on ARTEMIS-2109 started by Robbie Gemmell.
---
> enable building Artemis with JDK 11+
> 
>
> Key: ARTEMIS-2109
> URL: https://issues.apache.org/jira/browse/ARTEMIS-2109
> Project: ActiveMQ Artemis
>  Issue Type: Improvement
>  Components: Broker
>Affects Versions: 2.13.0
>Reporter: Miroslav Novak
>Assignee: Robbie Gemmell
>Priority: Major
> Fix For: 2.14.0
>
>  Time Spent: 50m
>  Remaining Estimate: 0h
>
> Artemis cannot be build with JDK 11:
> {code}
> $ java -version
> openjdk version "11" 2018-09-25
> OpenJDK Runtime Environment 18.9 (build 11+28)
> OpenJDK 64-Bit Server VM 18.9 (build 11+28, mixed mode)
> {code}
> Build fails with:
> {code}
> $ mvn clean install
> ...
> [INFO] 
> 
> [INFO] Building ActiveMQ Artemis Parent 2.7.0-SNAPSHOT
> [INFO] 
> 
> [INFO] 
> [INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ artemis-pom ---
> [INFO] Deleting /home/mnovak/projects/activemq-artemis/target
> [INFO] 
> [INFO] --- maven-enforcer-plugin:1.4:enforce (enforce-maven) @ artemis-pom ---
> [INFO] 
> [INFO] --- maven-enforcer-plugin:1.4:enforce (enforce-java) @ artemis-pom ---
> [INFO] 
> 
> [INFO] Reactor Summary:
> [INFO] 
> [INFO] ActiveMQ Artemis Parent  FAILURE [  0.302 
> s]
> [INFO] ActiveMQ Artemis Commons ... SKIPPED
> [INFO] ActiveMQ Artemis Core Client ... SKIPPED
> [INFO] ActiveMQ Artemis Selector Implementation ... SKIPPED
> [INFO] ActiveMQ Artemis JMS Client  SKIPPED
> [INFO] ActiveMQ Artemis Native POM  SKIPPED
> [INFO] ActiveMQ Artemis Journal ... SKIPPED
> [INFO] ActiveMQ Artemis JDBC Store  SKIPPED
> [INFO] ActiveMQ Artemis Server  SKIPPED
> [INFO] ActiveMQ Artemis Protocols . SKIPPED
> [INFO] ActiveMQ Artemis AMQP Protocol . SKIPPED
> [INFO] ActiveMQ Artemis STOMP Protocol  SKIPPED
> [INFO] ActiveMQ Artemis OpenWire Protocol . SKIPPED
> [INFO] ActiveMQ Artemis HQClient Protocol . SKIPPED
> [INFO] ActiveMQ Artemis HornetQ Protocol .. SKIPPED
> [INFO] ActiveMQ Artemis MQTT Protocol . SKIPPED
> [INFO] ActiveMQ Artemis DTO ... SKIPPED
> [INFO] ActiveMQ Artemis Service Extensions  SKIPPED
> [INFO] ActiveMQ Artemis JMS Server  SKIPPED
> [INFO] ActiveMQ Artemis CDI Integration ... SKIPPED
> [INFO] ActiveMQ Artemis Boot .. SKIPPED
> [INFO] ActiveMQ Artemis Tools . SKIPPED
> [INFO] ActiveMQ Artemis CLI ... SKIPPED
> [INFO] ActiveMQ Artemis Web ... SKIPPED
> [INFO] ActiveMQ Artemis Web ... SKIPPED
> [INFO] ActiveMQ Artemis Core Client All ... SKIPPED
> [INFO] ActiveMQ Artemis Client OSGi ... SKIPPED
> [INFO] ActiveMQ Artemis JUnit Rules ... SKIPPED
> [INFO] ActiveMQ Artemis JMS Client All  SKIPPED
> [INFO] ActiveMQ Artemis JMS Client OSGi ... SKIPPED
> [INFO] ActiveMQ Artemis RAR POM ... SKIPPED
> [INFO] ActiveMQ Artemis REST Interface Implementation . SKIPPED
> [INFO] ActiveMQ Artemis Maven Plugin .. SKIPPED
> [INFO] ActiveMQ Artemis Server OSGi ... SKIPPED
> [INFO] ActiveMQ Artemis Cons .. SKIPPED
> [INFO] ActiveMQ Artemis HawtIO Branding ... SKIPPED
> [INFO] ActiveMQ Artemis HawtIO Plugin . SKIPPED
> [INFO] ActiveMQ Artemis Console ... SKIPPED
> [INFO] ActiveMQ Artemis Spring Integration  SKIPPED
> [INFO] Apache ActiveMQ Artemis Distribution ... SKIPPED
> [INFO] ActiveMQ Artemis Tests POM . SKIPPED
> [INFO] ActiveMQ Artemis Test Support .. SKIPPED
> [INFO] ActiveMQ Artemis Unit Tests  SKIPPED
> [INFO] ActiveMQ Artemis Joram Tests ... SKIPPED
> [INFO] ActiveMQ Artemis timing Tests .. SKIPPED
> [INFO] ActiveMQ Artemis JMS Tests . SKIPPED
> [INFO] ActiveMQ Artemis Features .. 

[jira] [Work logged] (ARTEMIS-2109) enable building Artemis with JDK 11+

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


 [ 
https://issues.apache.org/jira/browse/ARTEMIS-2109?focusedWorklogId=445870=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-445870
 ]

ASF GitHub Bot logged work on ARTEMIS-2109:
---

Author: ASF GitHub Bot
Created on: 15/Jun/20 14:29
Start Date: 15/Jun/20 14:29
Worklog Time Spent: 10m 
  Work Description: gemmellr commented on pull request #3183:
URL: https://github.com/apache/activemq-artemis/pull/3183#issuecomment-644170255


   More changes following #3179



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: 445870)
Time Spent: 50m  (was: 40m)

> enable building Artemis with JDK 11+
> 
>
> Key: ARTEMIS-2109
> URL: https://issues.apache.org/jira/browse/ARTEMIS-2109
> Project: ActiveMQ Artemis
>  Issue Type: Improvement
>  Components: Broker
>Affects Versions: 2.13.0
>Reporter: Miroslav Novak
>Priority: Major
> Fix For: 2.14.0
>
>  Time Spent: 50m
>  Remaining Estimate: 0h
>
> Artemis cannot be build with JDK 11:
> {code}
> $ java -version
> openjdk version "11" 2018-09-25
> OpenJDK Runtime Environment 18.9 (build 11+28)
> OpenJDK 64-Bit Server VM 18.9 (build 11+28, mixed mode)
> {code}
> Build fails with:
> {code}
> $ mvn clean install
> ...
> [INFO] 
> 
> [INFO] Building ActiveMQ Artemis Parent 2.7.0-SNAPSHOT
> [INFO] 
> 
> [INFO] 
> [INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ artemis-pom ---
> [INFO] Deleting /home/mnovak/projects/activemq-artemis/target
> [INFO] 
> [INFO] --- maven-enforcer-plugin:1.4:enforce (enforce-maven) @ artemis-pom ---
> [INFO] 
> [INFO] --- maven-enforcer-plugin:1.4:enforce (enforce-java) @ artemis-pom ---
> [INFO] 
> 
> [INFO] Reactor Summary:
> [INFO] 
> [INFO] ActiveMQ Artemis Parent  FAILURE [  0.302 
> s]
> [INFO] ActiveMQ Artemis Commons ... SKIPPED
> [INFO] ActiveMQ Artemis Core Client ... SKIPPED
> [INFO] ActiveMQ Artemis Selector Implementation ... SKIPPED
> [INFO] ActiveMQ Artemis JMS Client  SKIPPED
> [INFO] ActiveMQ Artemis Native POM  SKIPPED
> [INFO] ActiveMQ Artemis Journal ... SKIPPED
> [INFO] ActiveMQ Artemis JDBC Store  SKIPPED
> [INFO] ActiveMQ Artemis Server  SKIPPED
> [INFO] ActiveMQ Artemis Protocols . SKIPPED
> [INFO] ActiveMQ Artemis AMQP Protocol . SKIPPED
> [INFO] ActiveMQ Artemis STOMP Protocol  SKIPPED
> [INFO] ActiveMQ Artemis OpenWire Protocol . SKIPPED
> [INFO] ActiveMQ Artemis HQClient Protocol . SKIPPED
> [INFO] ActiveMQ Artemis HornetQ Protocol .. SKIPPED
> [INFO] ActiveMQ Artemis MQTT Protocol . SKIPPED
> [INFO] ActiveMQ Artemis DTO ... SKIPPED
> [INFO] ActiveMQ Artemis Service Extensions  SKIPPED
> [INFO] ActiveMQ Artemis JMS Server  SKIPPED
> [INFO] ActiveMQ Artemis CDI Integration ... SKIPPED
> [INFO] ActiveMQ Artemis Boot .. SKIPPED
> [INFO] ActiveMQ Artemis Tools . SKIPPED
> [INFO] ActiveMQ Artemis CLI ... SKIPPED
> [INFO] ActiveMQ Artemis Web ... SKIPPED
> [INFO] ActiveMQ Artemis Web ... SKIPPED
> [INFO] ActiveMQ Artemis Core Client All ... SKIPPED
> [INFO] ActiveMQ Artemis Client OSGi ... SKIPPED
> [INFO] ActiveMQ Artemis JUnit Rules ... SKIPPED
> [INFO] ActiveMQ Artemis JMS Client All  SKIPPED
> [INFO] ActiveMQ Artemis JMS Client OSGi ... SKIPPED
> [INFO] ActiveMQ Artemis RAR POM ... SKIPPED
> [INFO] ActiveMQ Artemis REST Interface Implementation . SKIPPED
> [INFO] ActiveMQ Artemis Maven Plugin .. SKIPPED
> [INFO] ActiveMQ Artemis Server OSGi ... SKIPPED
> [INFO] ActiveMQ Artemis Cons .. SKIPPED
> [INFO] ActiveMQ Artemis HawtIO Branding ... SKIPPED
> [INFO] 

[jira] [Work logged] (ARTEMIS-2109) enable building Artemis with JDK 11+

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


 [ 
https://issues.apache.org/jira/browse/ARTEMIS-2109?focusedWorklogId=445861=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-445861
 ]

ASF GitHub Bot logged work on ARTEMIS-2109:
---

Author: ASF GitHub Bot
Created on: 15/Jun/20 14:12
Start Date: 15/Jun/20 14:12
Worklog Time Spent: 10m 
  Work Description: gemmellr opened a new pull request #3183:
URL: https://github.com/apache/activemq-artemis/pull/3183


   Requires JDK 8 for release profile, existing release check only set 8 
minimum. Enforces use of JDK8 or 11+ in regular build.  Renames profiles for 
consistency and clarity. Updates CI to not use the release profile for examples 
on 11 or 1, only 8.



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: 445861)
Time Spent: 40m  (was: 0.5h)

> enable building Artemis with JDK 11+
> 
>
> Key: ARTEMIS-2109
> URL: https://issues.apache.org/jira/browse/ARTEMIS-2109
> Project: ActiveMQ Artemis
>  Issue Type: Improvement
>  Components: Broker
>Affects Versions: 2.13.0
>Reporter: Miroslav Novak
>Priority: Major
> Fix For: 2.14.0
>
>  Time Spent: 40m
>  Remaining Estimate: 0h
>
> Artemis cannot be build with JDK 11:
> {code}
> $ java -version
> openjdk version "11" 2018-09-25
> OpenJDK Runtime Environment 18.9 (build 11+28)
> OpenJDK 64-Bit Server VM 18.9 (build 11+28, mixed mode)
> {code}
> Build fails with:
> {code}
> $ mvn clean install
> ...
> [INFO] 
> 
> [INFO] Building ActiveMQ Artemis Parent 2.7.0-SNAPSHOT
> [INFO] 
> 
> [INFO] 
> [INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ artemis-pom ---
> [INFO] Deleting /home/mnovak/projects/activemq-artemis/target
> [INFO] 
> [INFO] --- maven-enforcer-plugin:1.4:enforce (enforce-maven) @ artemis-pom ---
> [INFO] 
> [INFO] --- maven-enforcer-plugin:1.4:enforce (enforce-java) @ artemis-pom ---
> [INFO] 
> 
> [INFO] Reactor Summary:
> [INFO] 
> [INFO] ActiveMQ Artemis Parent  FAILURE [  0.302 
> s]
> [INFO] ActiveMQ Artemis Commons ... SKIPPED
> [INFO] ActiveMQ Artemis Core Client ... SKIPPED
> [INFO] ActiveMQ Artemis Selector Implementation ... SKIPPED
> [INFO] ActiveMQ Artemis JMS Client  SKIPPED
> [INFO] ActiveMQ Artemis Native POM  SKIPPED
> [INFO] ActiveMQ Artemis Journal ... SKIPPED
> [INFO] ActiveMQ Artemis JDBC Store  SKIPPED
> [INFO] ActiveMQ Artemis Server  SKIPPED
> [INFO] ActiveMQ Artemis Protocols . SKIPPED
> [INFO] ActiveMQ Artemis AMQP Protocol . SKIPPED
> [INFO] ActiveMQ Artemis STOMP Protocol  SKIPPED
> [INFO] ActiveMQ Artemis OpenWire Protocol . SKIPPED
> [INFO] ActiveMQ Artemis HQClient Protocol . SKIPPED
> [INFO] ActiveMQ Artemis HornetQ Protocol .. SKIPPED
> [INFO] ActiveMQ Artemis MQTT Protocol . SKIPPED
> [INFO] ActiveMQ Artemis DTO ... SKIPPED
> [INFO] ActiveMQ Artemis Service Extensions  SKIPPED
> [INFO] ActiveMQ Artemis JMS Server  SKIPPED
> [INFO] ActiveMQ Artemis CDI Integration ... SKIPPED
> [INFO] ActiveMQ Artemis Boot .. SKIPPED
> [INFO] ActiveMQ Artemis Tools . SKIPPED
> [INFO] ActiveMQ Artemis CLI ... SKIPPED
> [INFO] ActiveMQ Artemis Web ... SKIPPED
> [INFO] ActiveMQ Artemis Web ... SKIPPED
> [INFO] ActiveMQ Artemis Core Client All ... SKIPPED
> [INFO] ActiveMQ Artemis Client OSGi ... SKIPPED
> [INFO] ActiveMQ Artemis JUnit Rules ... SKIPPED
> [INFO] ActiveMQ Artemis JMS Client All  SKIPPED
> [INFO] ActiveMQ Artemis JMS Client OSGi ... SKIPPED
> [INFO] ActiveMQ Artemis RAR POM ... SKIPPED
> [INFO] ActiveMQ Artemis REST Interface Implementation . SKIPPED
> [INFO] ActiveMQ Artemis Maven Plugin .. SKIPPED
> [INFO] ActiveMQ Artemis 

[jira] [Work logged] (ARTEMIS-2803) NPE when trying to configure clustering

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


 [ 
https://issues.apache.org/jira/browse/ARTEMIS-2803?focusedWorklogId=445834=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-445834
 ]

ASF GitHub Bot logged work on ARTEMIS-2803:
---

Author: ASF GitHub Bot
Created on: 15/Jun/20 13:29
Start Date: 15/Jun/20 13:29
Worklog Time Spent: 10m 
  Work Description: asfgit closed pull request #3182:
URL: https://github.com/apache/activemq-artemis/pull/3182


   



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: 445834)
Time Spent: 20m  (was: 10m)

> NPE when trying to configure clustering
> ---
>
> Key: ARTEMIS-2803
> URL: https://issues.apache.org/jira/browse/ARTEMIS-2803
> Project: ActiveMQ Artemis
>  Issue Type: Bug
>Affects Versions: 2.13.0
>Reporter: Alexander Trauzzi
>Assignee: Justin Bertram
>Priority: Minor
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> I've encountered an exception during a bit of exploratory/PoC work I'm doing 
> around clustering.
> I'm making this report mostly on the basis that I haven't been able to infer 
> any cause or course of action from the exception messages. Even if this is a 
> result of a misconfiguration, perhaps the feedback can be improved to make it 
> easier to troubleshoot?
> I have already collated the details over at a question of Stack Overflow, 
> which I've also attached as an external issue URL. 
> Here's the config of broker A:
> {code:xml}
> 
>  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
> xmlns:xi="http://www.w3.org/2001/XInclude; xsi:schemaLocation="urn:activemq 
> /schema/artemis-configuration.xsd">
>  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
> xsi:schemaLocation="urn:activemq:core ">
> 0.0.0.0
> true
> 
> ASYNCIO
> data/paging
> data/bindings
> data/journal
> 
> data/large-messages
> true
> 2
> 10
> 4096
> 10M
> 
> 2
> 
> 4096
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 5000
> 
> 90
> 
> true
> 12
> 6
> HALT
> 102
> 
> 
>  name="artemis">tcp://0.0.0.0:61616?tcpSendBufferSize=1048576;tcpReceiveBufferSize=1048576;amqpMinLargeMessageSize=102400;protocols=CORE;useEpoll=true;amqpCredits=1000;amqpLowCredits=300;amqpDuplicateDetection=true
> 
>  name="stomp">tcp://0.0.0.0:61613?tcpSendBufferSize=1048576;tcpReceiveBufferSize=1048576;protocols=STOMP;useEpoll=true
> 
> cluster
> REDACTED
> 
> 
> 
> 
> true
> 
> 
> 
> 
> 
> 
> 
> DLQ
> ExpiryQueue
> 0
> 
> -1
> 
> 10
> PAGE
> true
> true
> true
> true
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> {code}
> Here's the config of broker B:
> {code:xml}
> 
>  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
> xmlns:xi="http://www.w3.org/2001/XInclude; xsi:schemaLocation="urn:activemq 
> /schema/artemis-configuration.xsd">
>  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
> xsi:schemaLocation="urn:activemq:core ">
> 0.0.0.0
> true
> 
> ASYNCIO
> data/paging
> data/bindings
> data/journal
> 
> data/large-messages
> true
> 2
> 10
> 4096
> 10M
> 
> 2
> 
> 4096
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 5000
> 
> 90
> 
> true
> 12
> 6
> HALT
> 102
> 
>  

[jira] [Commented] (ARTEMIS-2109) enable building Artemis with JDK 11+

2020-06-15 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/ARTEMIS-2109?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17135855#comment-17135855
 ] 

ASF subversion and git services commented on ARTEMIS-2109:
--

Commit 36dbfd9ae65cc457c6ee4f6345c8d21f7071c5bb in activemq-artemis's branch 
refs/heads/master from Robbie Gemmell
[ https://gitbox.apache.org/repos/asf?p=activemq-artemis.git;h=36dbfd9 ]

ARTEMIS-2109: Apply modified version of Franz artemis-dto xsd workaround from 
#2720

updated to only cause a change if the generated schema element found isnt 
prefixed, i.e modifies xsd only when needed and not all the time.


> enable building Artemis with JDK 11+
> 
>
> Key: ARTEMIS-2109
> URL: https://issues.apache.org/jira/browse/ARTEMIS-2109
> Project: ActiveMQ Artemis
>  Issue Type: Improvement
>  Components: Broker
>Affects Versions: 2.13.0
>Reporter: Miroslav Novak
>Priority: Major
> Fix For: 2.14.0
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> Artemis cannot be build with JDK 11:
> {code}
> $ java -version
> openjdk version "11" 2018-09-25
> OpenJDK Runtime Environment 18.9 (build 11+28)
> OpenJDK 64-Bit Server VM 18.9 (build 11+28, mixed mode)
> {code}
> Build fails with:
> {code}
> $ mvn clean install
> ...
> [INFO] 
> 
> [INFO] Building ActiveMQ Artemis Parent 2.7.0-SNAPSHOT
> [INFO] 
> 
> [INFO] 
> [INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ artemis-pom ---
> [INFO] Deleting /home/mnovak/projects/activemq-artemis/target
> [INFO] 
> [INFO] --- maven-enforcer-plugin:1.4:enforce (enforce-maven) @ artemis-pom ---
> [INFO] 
> [INFO] --- maven-enforcer-plugin:1.4:enforce (enforce-java) @ artemis-pom ---
> [INFO] 
> 
> [INFO] Reactor Summary:
> [INFO] 
> [INFO] ActiveMQ Artemis Parent  FAILURE [  0.302 
> s]
> [INFO] ActiveMQ Artemis Commons ... SKIPPED
> [INFO] ActiveMQ Artemis Core Client ... SKIPPED
> [INFO] ActiveMQ Artemis Selector Implementation ... SKIPPED
> [INFO] ActiveMQ Artemis JMS Client  SKIPPED
> [INFO] ActiveMQ Artemis Native POM  SKIPPED
> [INFO] ActiveMQ Artemis Journal ... SKIPPED
> [INFO] ActiveMQ Artemis JDBC Store  SKIPPED
> [INFO] ActiveMQ Artemis Server  SKIPPED
> [INFO] ActiveMQ Artemis Protocols . SKIPPED
> [INFO] ActiveMQ Artemis AMQP Protocol . SKIPPED
> [INFO] ActiveMQ Artemis STOMP Protocol  SKIPPED
> [INFO] ActiveMQ Artemis OpenWire Protocol . SKIPPED
> [INFO] ActiveMQ Artemis HQClient Protocol . SKIPPED
> [INFO] ActiveMQ Artemis HornetQ Protocol .. SKIPPED
> [INFO] ActiveMQ Artemis MQTT Protocol . SKIPPED
> [INFO] ActiveMQ Artemis DTO ... SKIPPED
> [INFO] ActiveMQ Artemis Service Extensions  SKIPPED
> [INFO] ActiveMQ Artemis JMS Server  SKIPPED
> [INFO] ActiveMQ Artemis CDI Integration ... SKIPPED
> [INFO] ActiveMQ Artemis Boot .. SKIPPED
> [INFO] ActiveMQ Artemis Tools . SKIPPED
> [INFO] ActiveMQ Artemis CLI ... SKIPPED
> [INFO] ActiveMQ Artemis Web ... SKIPPED
> [INFO] ActiveMQ Artemis Web ... SKIPPED
> [INFO] ActiveMQ Artemis Core Client All ... SKIPPED
> [INFO] ActiveMQ Artemis Client OSGi ... SKIPPED
> [INFO] ActiveMQ Artemis JUnit Rules ... SKIPPED
> [INFO] ActiveMQ Artemis JMS Client All  SKIPPED
> [INFO] ActiveMQ Artemis JMS Client OSGi ... SKIPPED
> [INFO] ActiveMQ Artemis RAR POM ... SKIPPED
> [INFO] ActiveMQ Artemis REST Interface Implementation . SKIPPED
> [INFO] ActiveMQ Artemis Maven Plugin .. SKIPPED
> [INFO] ActiveMQ Artemis Server OSGi ... SKIPPED
> [INFO] ActiveMQ Artemis Cons .. SKIPPED
> [INFO] ActiveMQ Artemis HawtIO Branding ... SKIPPED
> [INFO] ActiveMQ Artemis HawtIO Plugin . SKIPPED
> [INFO] ActiveMQ Artemis Console ... SKIPPED
> [INFO] ActiveMQ Artemis Spring Integration  SKIPPED
> [INFO] Apache ActiveMQ Artemis Distribution ... SKIPPED
> [INFO] ActiveMQ Artemis Tests POM 

[jira] [Work logged] (ARTEMIS-2109) enable building Artemis with JDK 11+

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


 [ 
https://issues.apache.org/jira/browse/ARTEMIS-2109?focusedWorklogId=445832=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-445832
 ]

ASF GitHub Bot logged work on ARTEMIS-2109:
---

Author: ASF GitHub Bot
Created on: 15/Jun/20 13:28
Start Date: 15/Jun/20 13:28
Worklog Time Spent: 10m 
  Work Description: asfgit closed pull request #3179:
URL: https://github.com/apache/activemq-artemis/pull/3179


   



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: 445832)
Time Spent: 0.5h  (was: 20m)

> enable building Artemis with JDK 11+
> 
>
> Key: ARTEMIS-2109
> URL: https://issues.apache.org/jira/browse/ARTEMIS-2109
> Project: ActiveMQ Artemis
>  Issue Type: Improvement
>  Components: Broker
>Affects Versions: 2.13.0
>Reporter: Miroslav Novak
>Priority: Major
> Fix For: 2.14.0
>
>  Time Spent: 0.5h
>  Remaining Estimate: 0h
>
> Artemis cannot be build with JDK 11:
> {code}
> $ java -version
> openjdk version "11" 2018-09-25
> OpenJDK Runtime Environment 18.9 (build 11+28)
> OpenJDK 64-Bit Server VM 18.9 (build 11+28, mixed mode)
> {code}
> Build fails with:
> {code}
> $ mvn clean install
> ...
> [INFO] 
> 
> [INFO] Building ActiveMQ Artemis Parent 2.7.0-SNAPSHOT
> [INFO] 
> 
> [INFO] 
> [INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ artemis-pom ---
> [INFO] Deleting /home/mnovak/projects/activemq-artemis/target
> [INFO] 
> [INFO] --- maven-enforcer-plugin:1.4:enforce (enforce-maven) @ artemis-pom ---
> [INFO] 
> [INFO] --- maven-enforcer-plugin:1.4:enforce (enforce-java) @ artemis-pom ---
> [INFO] 
> 
> [INFO] Reactor Summary:
> [INFO] 
> [INFO] ActiveMQ Artemis Parent  FAILURE [  0.302 
> s]
> [INFO] ActiveMQ Artemis Commons ... SKIPPED
> [INFO] ActiveMQ Artemis Core Client ... SKIPPED
> [INFO] ActiveMQ Artemis Selector Implementation ... SKIPPED
> [INFO] ActiveMQ Artemis JMS Client  SKIPPED
> [INFO] ActiveMQ Artemis Native POM  SKIPPED
> [INFO] ActiveMQ Artemis Journal ... SKIPPED
> [INFO] ActiveMQ Artemis JDBC Store  SKIPPED
> [INFO] ActiveMQ Artemis Server  SKIPPED
> [INFO] ActiveMQ Artemis Protocols . SKIPPED
> [INFO] ActiveMQ Artemis AMQP Protocol . SKIPPED
> [INFO] ActiveMQ Artemis STOMP Protocol  SKIPPED
> [INFO] ActiveMQ Artemis OpenWire Protocol . SKIPPED
> [INFO] ActiveMQ Artemis HQClient Protocol . SKIPPED
> [INFO] ActiveMQ Artemis HornetQ Protocol .. SKIPPED
> [INFO] ActiveMQ Artemis MQTT Protocol . SKIPPED
> [INFO] ActiveMQ Artemis DTO ... SKIPPED
> [INFO] ActiveMQ Artemis Service Extensions  SKIPPED
> [INFO] ActiveMQ Artemis JMS Server  SKIPPED
> [INFO] ActiveMQ Artemis CDI Integration ... SKIPPED
> [INFO] ActiveMQ Artemis Boot .. SKIPPED
> [INFO] ActiveMQ Artemis Tools . SKIPPED
> [INFO] ActiveMQ Artemis CLI ... SKIPPED
> [INFO] ActiveMQ Artemis Web ... SKIPPED
> [INFO] ActiveMQ Artemis Web ... SKIPPED
> [INFO] ActiveMQ Artemis Core Client All ... SKIPPED
> [INFO] ActiveMQ Artemis Client OSGi ... SKIPPED
> [INFO] ActiveMQ Artemis JUnit Rules ... SKIPPED
> [INFO] ActiveMQ Artemis JMS Client All  SKIPPED
> [INFO] ActiveMQ Artemis JMS Client OSGi ... SKIPPED
> [INFO] ActiveMQ Artemis RAR POM ... SKIPPED
> [INFO] ActiveMQ Artemis REST Interface Implementation . SKIPPED
> [INFO] ActiveMQ Artemis Maven Plugin .. SKIPPED
> [INFO] ActiveMQ Artemis Server OSGi ... SKIPPED
> [INFO] ActiveMQ Artemis Cons .. SKIPPED
> [INFO] ActiveMQ Artemis HawtIO Branding ... SKIPPED
> [INFO] ActiveMQ Artemis HawtIO Plugin . SKIPPED
> 

[jira] [Commented] (ARTEMIS-2109) enable building Artemis with JDK 11+

2020-06-15 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/ARTEMIS-2109?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17135859#comment-17135859
 ] 

ASF subversion and git services commented on ARTEMIS-2109:
--

Commit 95d8b89c52d788910f7153f309af20c682c32824 in activemq-artemis's branch 
refs/heads/master from Robbie Gemmell
[ https://gitbox.apache.org/repos/asf?p=activemq-artemis.git;h=95d8b89 ]

ARTEMIS-2109: enable JDK11 + JDK14 builds in Travs CI, and fix before_cache 
config


> enable building Artemis with JDK 11+
> 
>
> Key: ARTEMIS-2109
> URL: https://issues.apache.org/jira/browse/ARTEMIS-2109
> Project: ActiveMQ Artemis
>  Issue Type: Improvement
>  Components: Broker
>Affects Versions: 2.13.0
>Reporter: Miroslav Novak
>Priority: Major
> Fix For: 2.14.0
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> Artemis cannot be build with JDK 11:
> {code}
> $ java -version
> openjdk version "11" 2018-09-25
> OpenJDK Runtime Environment 18.9 (build 11+28)
> OpenJDK 64-Bit Server VM 18.9 (build 11+28, mixed mode)
> {code}
> Build fails with:
> {code}
> $ mvn clean install
> ...
> [INFO] 
> 
> [INFO] Building ActiveMQ Artemis Parent 2.7.0-SNAPSHOT
> [INFO] 
> 
> [INFO] 
> [INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ artemis-pom ---
> [INFO] Deleting /home/mnovak/projects/activemq-artemis/target
> [INFO] 
> [INFO] --- maven-enforcer-plugin:1.4:enforce (enforce-maven) @ artemis-pom ---
> [INFO] 
> [INFO] --- maven-enforcer-plugin:1.4:enforce (enforce-java) @ artemis-pom ---
> [INFO] 
> 
> [INFO] Reactor Summary:
> [INFO] 
> [INFO] ActiveMQ Artemis Parent  FAILURE [  0.302 
> s]
> [INFO] ActiveMQ Artemis Commons ... SKIPPED
> [INFO] ActiveMQ Artemis Core Client ... SKIPPED
> [INFO] ActiveMQ Artemis Selector Implementation ... SKIPPED
> [INFO] ActiveMQ Artemis JMS Client  SKIPPED
> [INFO] ActiveMQ Artemis Native POM  SKIPPED
> [INFO] ActiveMQ Artemis Journal ... SKIPPED
> [INFO] ActiveMQ Artemis JDBC Store  SKIPPED
> [INFO] ActiveMQ Artemis Server  SKIPPED
> [INFO] ActiveMQ Artemis Protocols . SKIPPED
> [INFO] ActiveMQ Artemis AMQP Protocol . SKIPPED
> [INFO] ActiveMQ Artemis STOMP Protocol  SKIPPED
> [INFO] ActiveMQ Artemis OpenWire Protocol . SKIPPED
> [INFO] ActiveMQ Artemis HQClient Protocol . SKIPPED
> [INFO] ActiveMQ Artemis HornetQ Protocol .. SKIPPED
> [INFO] ActiveMQ Artemis MQTT Protocol . SKIPPED
> [INFO] ActiveMQ Artemis DTO ... SKIPPED
> [INFO] ActiveMQ Artemis Service Extensions  SKIPPED
> [INFO] ActiveMQ Artemis JMS Server  SKIPPED
> [INFO] ActiveMQ Artemis CDI Integration ... SKIPPED
> [INFO] ActiveMQ Artemis Boot .. SKIPPED
> [INFO] ActiveMQ Artemis Tools . SKIPPED
> [INFO] ActiveMQ Artemis CLI ... SKIPPED
> [INFO] ActiveMQ Artemis Web ... SKIPPED
> [INFO] ActiveMQ Artemis Web ... SKIPPED
> [INFO] ActiveMQ Artemis Core Client All ... SKIPPED
> [INFO] ActiveMQ Artemis Client OSGi ... SKIPPED
> [INFO] ActiveMQ Artemis JUnit Rules ... SKIPPED
> [INFO] ActiveMQ Artemis JMS Client All  SKIPPED
> [INFO] ActiveMQ Artemis JMS Client OSGi ... SKIPPED
> [INFO] ActiveMQ Artemis RAR POM ... SKIPPED
> [INFO] ActiveMQ Artemis REST Interface Implementation . SKIPPED
> [INFO] ActiveMQ Artemis Maven Plugin .. SKIPPED
> [INFO] ActiveMQ Artemis Server OSGi ... SKIPPED
> [INFO] ActiveMQ Artemis Cons .. SKIPPED
> [INFO] ActiveMQ Artemis HawtIO Branding ... SKIPPED
> [INFO] ActiveMQ Artemis HawtIO Plugin . SKIPPED
> [INFO] ActiveMQ Artemis Console ... SKIPPED
> [INFO] ActiveMQ Artemis Spring Integration  SKIPPED
> [INFO] Apache ActiveMQ Artemis Distribution ... SKIPPED
> [INFO] ActiveMQ Artemis Tests POM . SKIPPED
> [INFO] ActiveMQ Artemis Test Support .. SKIPPED
> [INFO] ActiveMQ Artemis Unit Tests 

[jira] [Commented] (ARTEMIS-2803) NPE when trying to configure clustering

2020-06-15 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/ARTEMIS-2803?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17135860#comment-17135860
 ] 

ASF subversion and git services commented on ARTEMIS-2803:
--

Commit 51ecab5141c194d60cb61ded0502a54b158f7851 in activemq-artemis's branch 
refs/heads/master from Justin Bertram
[ https://gitbox.apache.org/repos/asf?p=activemq-artemis.git;h=51ecab5 ]

ARTEMIS-2803 avoid NPE w/o cluster-connection


> NPE when trying to configure clustering
> ---
>
> Key: ARTEMIS-2803
> URL: https://issues.apache.org/jira/browse/ARTEMIS-2803
> Project: ActiveMQ Artemis
>  Issue Type: Bug
>Affects Versions: 2.13.0
>Reporter: Alexander Trauzzi
>Assignee: Justin Bertram
>Priority: Minor
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> I've encountered an exception during a bit of exploratory/PoC work I'm doing 
> around clustering.
> I'm making this report mostly on the basis that I haven't been able to infer 
> any cause or course of action from the exception messages. Even if this is a 
> result of a misconfiguration, perhaps the feedback can be improved to make it 
> easier to troubleshoot?
> I have already collated the details over at a question of Stack Overflow, 
> which I've also attached as an external issue URL. 
> Here's the config of broker A:
> {code:xml}
> 
>  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
> xmlns:xi="http://www.w3.org/2001/XInclude; xsi:schemaLocation="urn:activemq 
> /schema/artemis-configuration.xsd">
>  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
> xsi:schemaLocation="urn:activemq:core ">
> 0.0.0.0
> true
> 
> ASYNCIO
> data/paging
> data/bindings
> data/journal
> 
> data/large-messages
> true
> 2
> 10
> 4096
> 10M
> 
> 2
> 
> 4096
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 5000
> 
> 90
> 
> true
> 12
> 6
> HALT
> 102
> 
> 
>  name="artemis">tcp://0.0.0.0:61616?tcpSendBufferSize=1048576;tcpReceiveBufferSize=1048576;amqpMinLargeMessageSize=102400;protocols=CORE;useEpoll=true;amqpCredits=1000;amqpLowCredits=300;amqpDuplicateDetection=true
> 
>  name="stomp">tcp://0.0.0.0:61613?tcpSendBufferSize=1048576;tcpReceiveBufferSize=1048576;protocols=STOMP;useEpoll=true
> 
> cluster
> REDACTED
> 
> 
> 
> 
> true
> 
> 
> 
> 
> 
> 
> 
> DLQ
> ExpiryQueue
> 0
> 
> -1
> 
> 10
> PAGE
> true
> true
> true
> true
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> {code}
> Here's the config of broker B:
> {code:xml}
> 
>  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
> xmlns:xi="http://www.w3.org/2001/XInclude; xsi:schemaLocation="urn:activemq 
> /schema/artemis-configuration.xsd">
>  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
> xsi:schemaLocation="urn:activemq:core ">
> 0.0.0.0
> true
> 
> ASYNCIO
> data/paging
> data/bindings
> data/journal
> 
> data/large-messages
> true
> 2
> 10
> 4096
> 10M
> 
> 2
> 
> 4096
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 5000
> 
> 90
> 
> true
> 12
> 6
> HALT
> 102
> 
>  name="stomp">tcp://0.0.0.0:61613?tcpSendBufferSize=1048576;tcpReceiveBufferSize=1048576;protocols=STOMP;useEpoll=true
> 
> 
> tcp://172.17.0.1:61616
> 
> cluster
> REDACTED
> 
> 
> /queue/global.regional
> global
> false
> 
> global
> 
> 
> 
> 
> 
> 
> 
> 0
> 
> 
>   

[jira] [Commented] (ARTEMIS-2109) enable building Artemis with JDK 11+

2020-06-15 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/ARTEMIS-2109?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17135858#comment-17135858
 ] 

ASF subversion and git services commented on ARTEMIS-2109:
--

Commit 12bc494f72753c57be0fdac86fd46734181f33a0 in activemq-artemis's branch 
refs/heads/master from Robbie Gemmell
[ https://gitbox.apache.org/repos/asf?p=activemq-artemis.git;h=12bc494 ]

ARTEMIS-2109: use default 1.8 compiler source/target config as with other 
examples, newest JDKs no longer target 1.6. Fix SSL example. Allows building on 
JDK 14+.


> enable building Artemis with JDK 11+
> 
>
> Key: ARTEMIS-2109
> URL: https://issues.apache.org/jira/browse/ARTEMIS-2109
> Project: ActiveMQ Artemis
>  Issue Type: Improvement
>  Components: Broker
>Affects Versions: 2.13.0
>Reporter: Miroslav Novak
>Priority: Major
> Fix For: 2.14.0
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> Artemis cannot be build with JDK 11:
> {code}
> $ java -version
> openjdk version "11" 2018-09-25
> OpenJDK Runtime Environment 18.9 (build 11+28)
> OpenJDK 64-Bit Server VM 18.9 (build 11+28, mixed mode)
> {code}
> Build fails with:
> {code}
> $ mvn clean install
> ...
> [INFO] 
> 
> [INFO] Building ActiveMQ Artemis Parent 2.7.0-SNAPSHOT
> [INFO] 
> 
> [INFO] 
> [INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ artemis-pom ---
> [INFO] Deleting /home/mnovak/projects/activemq-artemis/target
> [INFO] 
> [INFO] --- maven-enforcer-plugin:1.4:enforce (enforce-maven) @ artemis-pom ---
> [INFO] 
> [INFO] --- maven-enforcer-plugin:1.4:enforce (enforce-java) @ artemis-pom ---
> [INFO] 
> 
> [INFO] Reactor Summary:
> [INFO] 
> [INFO] ActiveMQ Artemis Parent  FAILURE [  0.302 
> s]
> [INFO] ActiveMQ Artemis Commons ... SKIPPED
> [INFO] ActiveMQ Artemis Core Client ... SKIPPED
> [INFO] ActiveMQ Artemis Selector Implementation ... SKIPPED
> [INFO] ActiveMQ Artemis JMS Client  SKIPPED
> [INFO] ActiveMQ Artemis Native POM  SKIPPED
> [INFO] ActiveMQ Artemis Journal ... SKIPPED
> [INFO] ActiveMQ Artemis JDBC Store  SKIPPED
> [INFO] ActiveMQ Artemis Server  SKIPPED
> [INFO] ActiveMQ Artemis Protocols . SKIPPED
> [INFO] ActiveMQ Artemis AMQP Protocol . SKIPPED
> [INFO] ActiveMQ Artemis STOMP Protocol  SKIPPED
> [INFO] ActiveMQ Artemis OpenWire Protocol . SKIPPED
> [INFO] ActiveMQ Artemis HQClient Protocol . SKIPPED
> [INFO] ActiveMQ Artemis HornetQ Protocol .. SKIPPED
> [INFO] ActiveMQ Artemis MQTT Protocol . SKIPPED
> [INFO] ActiveMQ Artemis DTO ... SKIPPED
> [INFO] ActiveMQ Artemis Service Extensions  SKIPPED
> [INFO] ActiveMQ Artemis JMS Server  SKIPPED
> [INFO] ActiveMQ Artemis CDI Integration ... SKIPPED
> [INFO] ActiveMQ Artemis Boot .. SKIPPED
> [INFO] ActiveMQ Artemis Tools . SKIPPED
> [INFO] ActiveMQ Artemis CLI ... SKIPPED
> [INFO] ActiveMQ Artemis Web ... SKIPPED
> [INFO] ActiveMQ Artemis Web ... SKIPPED
> [INFO] ActiveMQ Artemis Core Client All ... SKIPPED
> [INFO] ActiveMQ Artemis Client OSGi ... SKIPPED
> [INFO] ActiveMQ Artemis JUnit Rules ... SKIPPED
> [INFO] ActiveMQ Artemis JMS Client All  SKIPPED
> [INFO] ActiveMQ Artemis JMS Client OSGi ... SKIPPED
> [INFO] ActiveMQ Artemis RAR POM ... SKIPPED
> [INFO] ActiveMQ Artemis REST Interface Implementation . SKIPPED
> [INFO] ActiveMQ Artemis Maven Plugin .. SKIPPED
> [INFO] ActiveMQ Artemis Server OSGi ... SKIPPED
> [INFO] ActiveMQ Artemis Cons .. SKIPPED
> [INFO] ActiveMQ Artemis HawtIO Branding ... SKIPPED
> [INFO] ActiveMQ Artemis HawtIO Plugin . SKIPPED
> [INFO] ActiveMQ Artemis Console ... SKIPPED
> [INFO] ActiveMQ Artemis Spring Integration  SKIPPED
> [INFO] Apache ActiveMQ Artemis Distribution ... SKIPPED
> [INFO] ActiveMQ Artemis Tests POM . SKIPPED
> [INFO] ActiveMQ Artemis Test Support 

[jira] [Commented] (ARTEMIS-2109) enable building Artemis with JDK 11+

2020-06-15 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/ARTEMIS-2109?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17135857#comment-17135857
 ] 

ASF subversion and git services commented on ARTEMIS-2109:
--

Commit f69f03a2055b4396dfe8b5338007d930cfe3898b in activemq-artemis's branch 
refs/heads/master from Emmanuel Hugonnet
[ https://gitbox.apache.org/repos/asf?p=activemq-artemis.git;h=f69f03a ]

ARTEMIS-2109: updating mockito for Java 14 support and working round a javadoc 
issue


> enable building Artemis with JDK 11+
> 
>
> Key: ARTEMIS-2109
> URL: https://issues.apache.org/jira/browse/ARTEMIS-2109
> Project: ActiveMQ Artemis
>  Issue Type: Improvement
>  Components: Broker
>Affects Versions: 2.13.0
>Reporter: Miroslav Novak
>Priority: Major
> Fix For: 2.14.0
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> Artemis cannot be build with JDK 11:
> {code}
> $ java -version
> openjdk version "11" 2018-09-25
> OpenJDK Runtime Environment 18.9 (build 11+28)
> OpenJDK 64-Bit Server VM 18.9 (build 11+28, mixed mode)
> {code}
> Build fails with:
> {code}
> $ mvn clean install
> ...
> [INFO] 
> 
> [INFO] Building ActiveMQ Artemis Parent 2.7.0-SNAPSHOT
> [INFO] 
> 
> [INFO] 
> [INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ artemis-pom ---
> [INFO] Deleting /home/mnovak/projects/activemq-artemis/target
> [INFO] 
> [INFO] --- maven-enforcer-plugin:1.4:enforce (enforce-maven) @ artemis-pom ---
> [INFO] 
> [INFO] --- maven-enforcer-plugin:1.4:enforce (enforce-java) @ artemis-pom ---
> [INFO] 
> 
> [INFO] Reactor Summary:
> [INFO] 
> [INFO] ActiveMQ Artemis Parent  FAILURE [  0.302 
> s]
> [INFO] ActiveMQ Artemis Commons ... SKIPPED
> [INFO] ActiveMQ Artemis Core Client ... SKIPPED
> [INFO] ActiveMQ Artemis Selector Implementation ... SKIPPED
> [INFO] ActiveMQ Artemis JMS Client  SKIPPED
> [INFO] ActiveMQ Artemis Native POM  SKIPPED
> [INFO] ActiveMQ Artemis Journal ... SKIPPED
> [INFO] ActiveMQ Artemis JDBC Store  SKIPPED
> [INFO] ActiveMQ Artemis Server  SKIPPED
> [INFO] ActiveMQ Artemis Protocols . SKIPPED
> [INFO] ActiveMQ Artemis AMQP Protocol . SKIPPED
> [INFO] ActiveMQ Artemis STOMP Protocol  SKIPPED
> [INFO] ActiveMQ Artemis OpenWire Protocol . SKIPPED
> [INFO] ActiveMQ Artemis HQClient Protocol . SKIPPED
> [INFO] ActiveMQ Artemis HornetQ Protocol .. SKIPPED
> [INFO] ActiveMQ Artemis MQTT Protocol . SKIPPED
> [INFO] ActiveMQ Artemis DTO ... SKIPPED
> [INFO] ActiveMQ Artemis Service Extensions  SKIPPED
> [INFO] ActiveMQ Artemis JMS Server  SKIPPED
> [INFO] ActiveMQ Artemis CDI Integration ... SKIPPED
> [INFO] ActiveMQ Artemis Boot .. SKIPPED
> [INFO] ActiveMQ Artemis Tools . SKIPPED
> [INFO] ActiveMQ Artemis CLI ... SKIPPED
> [INFO] ActiveMQ Artemis Web ... SKIPPED
> [INFO] ActiveMQ Artemis Web ... SKIPPED
> [INFO] ActiveMQ Artemis Core Client All ... SKIPPED
> [INFO] ActiveMQ Artemis Client OSGi ... SKIPPED
> [INFO] ActiveMQ Artemis JUnit Rules ... SKIPPED
> [INFO] ActiveMQ Artemis JMS Client All  SKIPPED
> [INFO] ActiveMQ Artemis JMS Client OSGi ... SKIPPED
> [INFO] ActiveMQ Artemis RAR POM ... SKIPPED
> [INFO] ActiveMQ Artemis REST Interface Implementation . SKIPPED
> [INFO] ActiveMQ Artemis Maven Plugin .. SKIPPED
> [INFO] ActiveMQ Artemis Server OSGi ... SKIPPED
> [INFO] ActiveMQ Artemis Cons .. SKIPPED
> [INFO] ActiveMQ Artemis HawtIO Branding ... SKIPPED
> [INFO] ActiveMQ Artemis HawtIO Plugin . SKIPPED
> [INFO] ActiveMQ Artemis Console ... SKIPPED
> [INFO] ActiveMQ Artemis Spring Integration  SKIPPED
> [INFO] Apache ActiveMQ Artemis Distribution ... SKIPPED
> [INFO] ActiveMQ Artemis Tests POM . SKIPPED
> [INFO] ActiveMQ Artemis Test Support .. SKIPPED
> [INFO] ActiveMQ Artemis Unit Tests 

[jira] [Commented] (ARTEMIS-2109) enable building Artemis with JDK 11+

2020-06-15 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/ARTEMIS-2109?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17135856#comment-17135856
 ] 

ASF subversion and git services commented on ARTEMIS-2109:
--

Commit 502bfcfc567cf13615727a767b9e5ae29871b5a3 in activemq-artemis's branch 
refs/heads/master from Robbie Gemmell
[ https://gitbox.apache.org/repos/asf?p=activemq-artemis.git;h=502bfcf ]

ARTEMIS-2109: Update extra-tests bits. Disable errorprone for examples, at 
least for now, to avoid updating hundreds of poms. Allows building on 11+


> enable building Artemis with JDK 11+
> 
>
> Key: ARTEMIS-2109
> URL: https://issues.apache.org/jira/browse/ARTEMIS-2109
> Project: ActiveMQ Artemis
>  Issue Type: Improvement
>  Components: Broker
>Affects Versions: 2.13.0
>Reporter: Miroslav Novak
>Priority: Major
> Fix For: 2.14.0
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> Artemis cannot be build with JDK 11:
> {code}
> $ java -version
> openjdk version "11" 2018-09-25
> OpenJDK Runtime Environment 18.9 (build 11+28)
> OpenJDK 64-Bit Server VM 18.9 (build 11+28, mixed mode)
> {code}
> Build fails with:
> {code}
> $ mvn clean install
> ...
> [INFO] 
> 
> [INFO] Building ActiveMQ Artemis Parent 2.7.0-SNAPSHOT
> [INFO] 
> 
> [INFO] 
> [INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ artemis-pom ---
> [INFO] Deleting /home/mnovak/projects/activemq-artemis/target
> [INFO] 
> [INFO] --- maven-enforcer-plugin:1.4:enforce (enforce-maven) @ artemis-pom ---
> [INFO] 
> [INFO] --- maven-enforcer-plugin:1.4:enforce (enforce-java) @ artemis-pom ---
> [INFO] 
> 
> [INFO] Reactor Summary:
> [INFO] 
> [INFO] ActiveMQ Artemis Parent  FAILURE [  0.302 
> s]
> [INFO] ActiveMQ Artemis Commons ... SKIPPED
> [INFO] ActiveMQ Artemis Core Client ... SKIPPED
> [INFO] ActiveMQ Artemis Selector Implementation ... SKIPPED
> [INFO] ActiveMQ Artemis JMS Client  SKIPPED
> [INFO] ActiveMQ Artemis Native POM  SKIPPED
> [INFO] ActiveMQ Artemis Journal ... SKIPPED
> [INFO] ActiveMQ Artemis JDBC Store  SKIPPED
> [INFO] ActiveMQ Artemis Server  SKIPPED
> [INFO] ActiveMQ Artemis Protocols . SKIPPED
> [INFO] ActiveMQ Artemis AMQP Protocol . SKIPPED
> [INFO] ActiveMQ Artemis STOMP Protocol  SKIPPED
> [INFO] ActiveMQ Artemis OpenWire Protocol . SKIPPED
> [INFO] ActiveMQ Artemis HQClient Protocol . SKIPPED
> [INFO] ActiveMQ Artemis HornetQ Protocol .. SKIPPED
> [INFO] ActiveMQ Artemis MQTT Protocol . SKIPPED
> [INFO] ActiveMQ Artemis DTO ... SKIPPED
> [INFO] ActiveMQ Artemis Service Extensions  SKIPPED
> [INFO] ActiveMQ Artemis JMS Server  SKIPPED
> [INFO] ActiveMQ Artemis CDI Integration ... SKIPPED
> [INFO] ActiveMQ Artemis Boot .. SKIPPED
> [INFO] ActiveMQ Artemis Tools . SKIPPED
> [INFO] ActiveMQ Artemis CLI ... SKIPPED
> [INFO] ActiveMQ Artemis Web ... SKIPPED
> [INFO] ActiveMQ Artemis Web ... SKIPPED
> [INFO] ActiveMQ Artemis Core Client All ... SKIPPED
> [INFO] ActiveMQ Artemis Client OSGi ... SKIPPED
> [INFO] ActiveMQ Artemis JUnit Rules ... SKIPPED
> [INFO] ActiveMQ Artemis JMS Client All  SKIPPED
> [INFO] ActiveMQ Artemis JMS Client OSGi ... SKIPPED
> [INFO] ActiveMQ Artemis RAR POM ... SKIPPED
> [INFO] ActiveMQ Artemis REST Interface Implementation . SKIPPED
> [INFO] ActiveMQ Artemis Maven Plugin .. SKIPPED
> [INFO] ActiveMQ Artemis Server OSGi ... SKIPPED
> [INFO] ActiveMQ Artemis Cons .. SKIPPED
> [INFO] ActiveMQ Artemis HawtIO Branding ... SKIPPED
> [INFO] ActiveMQ Artemis HawtIO Plugin . SKIPPED
> [INFO] ActiveMQ Artemis Console ... SKIPPED
> [INFO] ActiveMQ Artemis Spring Integration  SKIPPED
> [INFO] Apache ActiveMQ Artemis Distribution ... SKIPPED
> [INFO] ActiveMQ Artemis Tests POM . SKIPPED
> [INFO] ActiveMQ Artemis Test Support 

[jira] [Commented] (ARTEMIS-2109) enable building Artemis with JDK 11+

2020-06-15 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/ARTEMIS-2109?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17135854#comment-17135854
 ] 

ASF subversion and git services commented on ARTEMIS-2109:
--

Commit d2c46762e819c97950aa480e52101dcd33dcafe9 in activemq-artemis's branch 
refs/heads/master from Robbie Gemmell
[ https://gitbox.apache.org/repos/asf?p=activemq-artemis.git;h=d2c4676 ]

ARTEMIS-2109: fix javadoc errors, remove doclint config for JDK8, remove 
superfluous plugin versions, update to 3.0.1 javadoc plugin

Using 3.0.1 like the current apache parent pom [not being used], and also as 
newer ones break build.


> enable building Artemis with JDK 11+
> 
>
> Key: ARTEMIS-2109
> URL: https://issues.apache.org/jira/browse/ARTEMIS-2109
> Project: ActiveMQ Artemis
>  Issue Type: Improvement
>  Components: Broker
>Affects Versions: 2.13.0
>Reporter: Miroslav Novak
>Priority: Major
> Fix For: 2.14.0
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> Artemis cannot be build with JDK 11:
> {code}
> $ java -version
> openjdk version "11" 2018-09-25
> OpenJDK Runtime Environment 18.9 (build 11+28)
> OpenJDK 64-Bit Server VM 18.9 (build 11+28, mixed mode)
> {code}
> Build fails with:
> {code}
> $ mvn clean install
> ...
> [INFO] 
> 
> [INFO] Building ActiveMQ Artemis Parent 2.7.0-SNAPSHOT
> [INFO] 
> 
> [INFO] 
> [INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ artemis-pom ---
> [INFO] Deleting /home/mnovak/projects/activemq-artemis/target
> [INFO] 
> [INFO] --- maven-enforcer-plugin:1.4:enforce (enforce-maven) @ artemis-pom ---
> [INFO] 
> [INFO] --- maven-enforcer-plugin:1.4:enforce (enforce-java) @ artemis-pom ---
> [INFO] 
> 
> [INFO] Reactor Summary:
> [INFO] 
> [INFO] ActiveMQ Artemis Parent  FAILURE [  0.302 
> s]
> [INFO] ActiveMQ Artemis Commons ... SKIPPED
> [INFO] ActiveMQ Artemis Core Client ... SKIPPED
> [INFO] ActiveMQ Artemis Selector Implementation ... SKIPPED
> [INFO] ActiveMQ Artemis JMS Client  SKIPPED
> [INFO] ActiveMQ Artemis Native POM  SKIPPED
> [INFO] ActiveMQ Artemis Journal ... SKIPPED
> [INFO] ActiveMQ Artemis JDBC Store  SKIPPED
> [INFO] ActiveMQ Artemis Server  SKIPPED
> [INFO] ActiveMQ Artemis Protocols . SKIPPED
> [INFO] ActiveMQ Artemis AMQP Protocol . SKIPPED
> [INFO] ActiveMQ Artemis STOMP Protocol  SKIPPED
> [INFO] ActiveMQ Artemis OpenWire Protocol . SKIPPED
> [INFO] ActiveMQ Artemis HQClient Protocol . SKIPPED
> [INFO] ActiveMQ Artemis HornetQ Protocol .. SKIPPED
> [INFO] ActiveMQ Artemis MQTT Protocol . SKIPPED
> [INFO] ActiveMQ Artemis DTO ... SKIPPED
> [INFO] ActiveMQ Artemis Service Extensions  SKIPPED
> [INFO] ActiveMQ Artemis JMS Server  SKIPPED
> [INFO] ActiveMQ Artemis CDI Integration ... SKIPPED
> [INFO] ActiveMQ Artemis Boot .. SKIPPED
> [INFO] ActiveMQ Artemis Tools . SKIPPED
> [INFO] ActiveMQ Artemis CLI ... SKIPPED
> [INFO] ActiveMQ Artemis Web ... SKIPPED
> [INFO] ActiveMQ Artemis Web ... SKIPPED
> [INFO] ActiveMQ Artemis Core Client All ... SKIPPED
> [INFO] ActiveMQ Artemis Client OSGi ... SKIPPED
> [INFO] ActiveMQ Artemis JUnit Rules ... SKIPPED
> [INFO] ActiveMQ Artemis JMS Client All  SKIPPED
> [INFO] ActiveMQ Artemis JMS Client OSGi ... SKIPPED
> [INFO] ActiveMQ Artemis RAR POM ... SKIPPED
> [INFO] ActiveMQ Artemis REST Interface Implementation . SKIPPED
> [INFO] ActiveMQ Artemis Maven Plugin .. SKIPPED
> [INFO] ActiveMQ Artemis Server OSGi ... SKIPPED
> [INFO] ActiveMQ Artemis Cons .. SKIPPED
> [INFO] ActiveMQ Artemis HawtIO Branding ... SKIPPED
> [INFO] ActiveMQ Artemis HawtIO Plugin . SKIPPED
> [INFO] ActiveMQ Artemis Console ... SKIPPED
> [INFO] ActiveMQ Artemis Spring Integration  SKIPPED
> [INFO] Apache ActiveMQ Artemis Distribution ... SKIPPED
> [INFO] ActiveMQ Artemis Tests POM 

[jira] [Commented] (ARTEMIS-2109) enable building Artemis with JDK 11+

2020-06-15 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/ARTEMIS-2109?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17135853#comment-17135853
 ] 

ASF subversion and git services commented on ARTEMIS-2109:
--

Commit efe0f468de2ffa0b354974d20df2087557b7cf7f in activemq-artemis's branch 
refs/heads/master from Emmanuel Hugonnet
[ https://gitbox.apache.org/repos/asf?p=activemq-artemis.git;h=efe0f46 ]

ARTEMIS-2109: Updating the build to be able to execute it on Java 11 and Java 8.


> enable building Artemis with JDK 11+
> 
>
> Key: ARTEMIS-2109
> URL: https://issues.apache.org/jira/browse/ARTEMIS-2109
> Project: ActiveMQ Artemis
>  Issue Type: Improvement
>  Components: Broker
>Affects Versions: 2.13.0
>Reporter: Miroslav Novak
>Priority: Major
> Fix For: 2.14.0
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> Artemis cannot be build with JDK 11:
> {code}
> $ java -version
> openjdk version "11" 2018-09-25
> OpenJDK Runtime Environment 18.9 (build 11+28)
> OpenJDK 64-Bit Server VM 18.9 (build 11+28, mixed mode)
> {code}
> Build fails with:
> {code}
> $ mvn clean install
> ...
> [INFO] 
> 
> [INFO] Building ActiveMQ Artemis Parent 2.7.0-SNAPSHOT
> [INFO] 
> 
> [INFO] 
> [INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ artemis-pom ---
> [INFO] Deleting /home/mnovak/projects/activemq-artemis/target
> [INFO] 
> [INFO] --- maven-enforcer-plugin:1.4:enforce (enforce-maven) @ artemis-pom ---
> [INFO] 
> [INFO] --- maven-enforcer-plugin:1.4:enforce (enforce-java) @ artemis-pom ---
> [INFO] 
> 
> [INFO] Reactor Summary:
> [INFO] 
> [INFO] ActiveMQ Artemis Parent  FAILURE [  0.302 
> s]
> [INFO] ActiveMQ Artemis Commons ... SKIPPED
> [INFO] ActiveMQ Artemis Core Client ... SKIPPED
> [INFO] ActiveMQ Artemis Selector Implementation ... SKIPPED
> [INFO] ActiveMQ Artemis JMS Client  SKIPPED
> [INFO] ActiveMQ Artemis Native POM  SKIPPED
> [INFO] ActiveMQ Artemis Journal ... SKIPPED
> [INFO] ActiveMQ Artemis JDBC Store  SKIPPED
> [INFO] ActiveMQ Artemis Server  SKIPPED
> [INFO] ActiveMQ Artemis Protocols . SKIPPED
> [INFO] ActiveMQ Artemis AMQP Protocol . SKIPPED
> [INFO] ActiveMQ Artemis STOMP Protocol  SKIPPED
> [INFO] ActiveMQ Artemis OpenWire Protocol . SKIPPED
> [INFO] ActiveMQ Artemis HQClient Protocol . SKIPPED
> [INFO] ActiveMQ Artemis HornetQ Protocol .. SKIPPED
> [INFO] ActiveMQ Artemis MQTT Protocol . SKIPPED
> [INFO] ActiveMQ Artemis DTO ... SKIPPED
> [INFO] ActiveMQ Artemis Service Extensions  SKIPPED
> [INFO] ActiveMQ Artemis JMS Server  SKIPPED
> [INFO] ActiveMQ Artemis CDI Integration ... SKIPPED
> [INFO] ActiveMQ Artemis Boot .. SKIPPED
> [INFO] ActiveMQ Artemis Tools . SKIPPED
> [INFO] ActiveMQ Artemis CLI ... SKIPPED
> [INFO] ActiveMQ Artemis Web ... SKIPPED
> [INFO] ActiveMQ Artemis Web ... SKIPPED
> [INFO] ActiveMQ Artemis Core Client All ... SKIPPED
> [INFO] ActiveMQ Artemis Client OSGi ... SKIPPED
> [INFO] ActiveMQ Artemis JUnit Rules ... SKIPPED
> [INFO] ActiveMQ Artemis JMS Client All  SKIPPED
> [INFO] ActiveMQ Artemis JMS Client OSGi ... SKIPPED
> [INFO] ActiveMQ Artemis RAR POM ... SKIPPED
> [INFO] ActiveMQ Artemis REST Interface Implementation . SKIPPED
> [INFO] ActiveMQ Artemis Maven Plugin .. SKIPPED
> [INFO] ActiveMQ Artemis Server OSGi ... SKIPPED
> [INFO] ActiveMQ Artemis Cons .. SKIPPED
> [INFO] ActiveMQ Artemis HawtIO Branding ... SKIPPED
> [INFO] ActiveMQ Artemis HawtIO Plugin . SKIPPED
> [INFO] ActiveMQ Artemis Console ... SKIPPED
> [INFO] ActiveMQ Artemis Spring Integration  SKIPPED
> [INFO] Apache ActiveMQ Artemis Distribution ... SKIPPED
> [INFO] ActiveMQ Artemis Tests POM . SKIPPED
> [INFO] ActiveMQ Artemis Test Support .. SKIPPED
> [INFO] ActiveMQ Artemis Unit Tests 

[jira] [Commented] (AMQ-7497) RAR xaResource needs to support reconnect

2020-06-15 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/AMQ-7497?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17135666#comment-17135666
 ] 

ASF subversion and git services commented on AMQ-7497:
--

Commit 8cc5386fbbe7a836ac9aef3cffcb56c0b9f65adc in activemq's branch 
refs/heads/master from gtully
[ https://gitbox.apache.org/repos/asf?p=activemq.git;h=8cc5386 ]

AMQ-7497 - further test to verify behaviour after ra.stop


> RAR xaResource needs to support reconnect
> -
>
> Key: AMQ-7497
> URL: https://issues.apache.org/jira/browse/AMQ-7497
> Project: ActiveMQ
>  Issue Type: Bug
>  Components: RAR, XA
>Affects Versions: 5.10.0
>Reporter: Gary Tully
>Assignee: Gary Tully
>Priority: Major
> Fix For: 5.16.0
>
>
> Inbound MDBs supported by endpoint workers in the RAR support reconnect and 
> failover with maxReconnects=0. In this way the failover transport can support 
> the use of multiple brokers.
> The failover url with no reconnects will leave the resource adapter single 
> xaResource connection in an invalid state after disconnect and will cause 
> periodic recovery to fail.
> The single RA wide xaResource should reconnect any failed connection on 
> subsequent usage.



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