You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by cl...@apache.org on 2021/03/26 15:17:00 UTC

[activemq-artemis] branch master updated: ARTEMIS-3198 - Fix order of concurrency parameter

This is an automated email from the ASF dual-hosted git repository.

clebertsuconic pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git


The following commit(s) were added to refs/heads/master by this push:
     new fe3851f  ARTEMIS-3198 - Fix order of concurrency parameter
fe3851f is described below

commit fe3851ff6d243cc0b58872c5431646fbeb410b41
Author: AntonRoskvist <an...@volvo.com>
AuthorDate: Thu Mar 25 16:08:50 2021 +0100

    ARTEMIS-3198 - Fix order of concurrency parameter
---
 .../main/resources/schema/artemis-configuration.xsd   | 19 +++++++++----------
 1 file changed, 9 insertions(+), 10 deletions(-)

diff --git a/artemis-server/src/main/resources/schema/artemis-configuration.xsd b/artemis-server/src/main/resources/schema/artemis-configuration.xsd
index bc474c2..fb9f0fe 100644
--- a/artemis-server/src/main/resources/schema/artemis-configuration.xsd
+++ b/artemis-server/src/main/resources/schema/artemis-configuration.xsd
@@ -1654,6 +1654,15 @@
             </xsd:annotation>
          </xsd:element>
 
+         <xsd:element name="concurrency" type="xsd:int" default="1" maxOccurs="1" minOccurs="0">
+            <xsd:annotation>
+               <xsd:documentation>
+                  Number of concurrent workers, more workers can help increase throughput on high latency networks. 
+                  Defaults to 1
+               </xsd:documentation>
+            </xsd:annotation>
+         </xsd:element>
+
          <xsd:choice>
             <xsd:element name="static-connectors" maxOccurs="1" minOccurs="1">
                <xsd:complexType>
@@ -1676,16 +1685,6 @@
                </xsd:complexType>
             </xsd:element>
          </xsd:choice>
-
-         <xsd:element name="concurrency" type="xsd:int" default="1" maxOccurs="1" minOccurs="0">
-            <xsd:annotation>
-               <xsd:documentation>
-                  Number of concurrent workers, more workers can help increase throughput on high latency networks. 
-                  Defaults to 1
-               </xsd:documentation>
-            </xsd:annotation>
-         </xsd:element>
-
       </xsd:sequence>
 
       <xsd:attribute name="name" type="xsd:ID" use="required">