[jira] [Commented] (ARTEMIS-1892) Allow whitespace in

2018-06-04 Thread ASF subversion and git services (JIRA)


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

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

Commit 9183172de348b1e376b46329da8bdcada8ff1bfc in activemq-artemis's branch 
refs/heads/master from [~jbertram]
[ https://git-wip-us.apache.org/repos/asf?p=activemq-artemis.git;h=9183172 ]

ARTEMIS-1892 allow whitespace in acceptor and connector URIs


> Allow whitespace in 
> --
>
> Key: ARTEMIS-1892
> URL: https://issues.apache.org/jira/browse/ARTEMIS-1892
> Project: ActiveMQ Artemis
>  Issue Type: New Feature
>Reporter: Lionel Cons
>Assignee: Justin Bertram
>Priority: Minor
>
> When tuning the acceptors, the {{}} elements can quickly become 
> very long and hard to read.
> Here is an example from the default configuration:
> {code}
>   
>name="artemis">tcp://0.0.0.0:61616?tcpSendBufferSize=1048576;tcpReceiveBufferSize=1048576;protocols=CORE,AMQP,STOMP,HORNETQ,MQTT,OPENWIRE;useEpoll=true;amqpCredits=1000;amqpLowCredits=300
> {code}
> It would be nice to be able to add whitespace to make the {{broker.xml}} 
> easier to read and manage. For instance:
> {code}
>   
>   
> tcp://0.0.0.0:61616?
> tcpSendBufferSize=1048576;
> tcpReceiveBufferSize=1048576;
> protocols=CORE,AMQP,STOMP,HORNETQ,MQTT,OPENWIRE;
> useEpoll=true;
> amqpCredits=1000;
> amqpLowCredits=300
>   
> {code}
> It seems that stripping whitespace from the {{}} elements text 
> should be enough to make it work...



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (ARTEMIS-1892) Allow whitespace in

2018-06-04 Thread ASF GitHub Bot (JIRA)


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

ASF GitHub Bot commented on ARTEMIS-1892:
-

Github user asfgit closed the pull request at:

https://github.com/apache/activemq-artemis/pull/2120


> Allow whitespace in 
> --
>
> Key: ARTEMIS-1892
> URL: https://issues.apache.org/jira/browse/ARTEMIS-1892
> Project: ActiveMQ Artemis
>  Issue Type: New Feature
>Reporter: Lionel Cons
>Assignee: Justin Bertram
>Priority: Minor
>
> When tuning the acceptors, the {{}} elements can quickly become 
> very long and hard to read.
> Here is an example from the default configuration:
> {code}
>   
>name="artemis">tcp://0.0.0.0:61616?tcpSendBufferSize=1048576;tcpReceiveBufferSize=1048576;protocols=CORE,AMQP,STOMP,HORNETQ,MQTT,OPENWIRE;useEpoll=true;amqpCredits=1000;amqpLowCredits=300
> {code}
> It would be nice to be able to add whitespace to make the {{broker.xml}} 
> easier to read and manage. For instance:
> {code}
>   
>   
> tcp://0.0.0.0:61616?
> tcpSendBufferSize=1048576;
> tcpReceiveBufferSize=1048576;
> protocols=CORE,AMQP,STOMP,HORNETQ,MQTT,OPENWIRE;
> useEpoll=true;
> amqpCredits=1000;
> amqpLowCredits=300
>   
> {code}
> It seems that stripping whitespace from the {{}} elements text 
> should be enough to make it work...



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (ARTEMIS-1892) Allow whitespace in

2018-06-01 Thread ASF GitHub Bot (JIRA)


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

ASF GitHub Bot commented on ARTEMIS-1892:
-

GitHub user jbertram opened a pull request:

https://github.com/apache/activemq-artemis/pull/2120

ARTEMIS-1892 allow whitespace in acceptor and connector URIs



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/jbertram/activemq-artemis ARTEMIS-1892

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/activemq-artemis/pull/2120.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #2120


commit b3f9f51b1d507b4dea2894aeef78fd515c0fcf4e
Author: Justin Bertram 
Date:   2018-06-01T17:26:12Z

ARTEMIS-1892 allow whitespace in acceptor and connector URIs




> Allow whitespace in 
> --
>
> Key: ARTEMIS-1892
> URL: https://issues.apache.org/jira/browse/ARTEMIS-1892
> Project: ActiveMQ Artemis
>  Issue Type: New Feature
>Reporter: Lionel Cons
>Priority: Minor
>
> When tuning the acceptors, the {{}} elements can quickly become 
> very long and hard to read.
> Here is an example from the default configuration:
> {code}
>   
>name="artemis">tcp://0.0.0.0:61616?tcpSendBufferSize=1048576;tcpReceiveBufferSize=1048576;protocols=CORE,AMQP,STOMP,HORNETQ,MQTT,OPENWIRE;useEpoll=true;amqpCredits=1000;amqpLowCredits=300
> {code}
> It would be nice to be able to add whitespace to make the {{broker.xml}} 
> easier to read and manage. For instance:
> {code}
>   
>   
> tcp://0.0.0.0:61616?
> tcpSendBufferSize=1048576;
> tcpReceiveBufferSize=1048576;
> protocols=CORE,AMQP,STOMP,HORNETQ,MQTT,OPENWIRE;
> useEpoll=true;
> amqpCredits=1000;
> amqpLowCredits=300
>   
> {code}
> It seems that stripping whitespace from the {{}} elements text 
> should be enough to make it work...



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)