Howard Gao
05b9bf6a8f
This closes #2980
2020-02-13 11:10:36 +08:00
Justin Bertram
daae7e750a
ARTEMIS-2619 allow disabling STOMP 'server' header
2020-02-12 19:38:38 -06:00
Clebert Suconic
69779eed10
This closes #2975
2020-02-12 13:29:51 -05:00
Francesco Nigro
d42267f05a
ARTEMIS-2617 Lazy scan AMQP message data
2020-02-12 13:29:51 -05:00
Francesco Nigro
5897909dc9
ARTEMIS-2617 use core pools to reduce GC on journal loading
2020-02-12 13:29:51 -05:00
Christopher L. Shannon (cshannon)
0b8c33bb0f
NO-JIRA: Adding missing module to broker-federation pom
2020-02-11 08:56:08 -05:00
Christopher L. Shannon (cshannon)
b42cc35d5e
This closes #2981
2020-02-11 08:55:50 -05:00
brusdev
832f1e5b92
NO-JIRA Fix federated-address-downstream pom
2020-02-11 08:33:06 +01:00
Justin Bertram
67022a0744
This closes #2979
2020-02-10 10:50:13 -06:00
Clebert Suconic
0487e712e2
NO-JIRA some Wait.assertEquals
2020-02-10 09:25:06 -05:00
Justin Bertram
2f71327978
This closes #2965
2020-02-06 12:27:00 -06:00
Sebastian Thomschke
ae31854548
ARTEMIS-2606 Upgrade to Hawt.io 1.5.12
2020-02-06 12:27:00 -06:00
Justin Bertram
a00fb746f8
This closes #2953
2020-02-06 12:21:55 -06:00
brusdev
b71178b4fb
ARTEMIS-2600 Update mqtt-client version to 1.16 for tests
2020-02-06 12:21:54 -06:00
Clebert Suconic
dddc4d9977
This closes #2970
2020-02-05 15:25:31 -05:00
brusdev
622c0d61e8
ARTEMIS-2615 Update netty version to 4.1.45.Final
...
Update netty version to 4.1.45.Final and netty-tcnative version to 2.0.28.Final.
2020-02-05 15:25:31 -05:00
Clebert Suconic
1bc88a7264
This closes #2950
2020-02-05 11:19:57 -05:00
Francesco Nigro
3282f105bb
ARTEMIS-2604 Optimize journal loading
...
- Avoid some Properties Decoding, checking if we need certain properties like scheduled delivery
- Avoid creating some unnecessary SimpleString instances
- Removed some intermediate ActiveMQBuffer allocation
- Removed some intermediate UnreleasableByteBuf allocation
2020-02-05 11:13:53 -05:00
Justin Bertram
fb60795b59
NO-JIRA fix user command parameter docs
2020-02-05 08:36:34 -06:00
Justin Bertram
1481b87b64
This closes #2967
2020-02-04 15:49:51 -06:00
Maurice Betzel
12170fd792
ARTEMIS-2612 Corrected Bundle-Name and Bundle-Description in artemis-hawtio
2020-02-04 15:49:50 -06:00
Clebert Suconic
a2ed46358f
This closes #2969
2020-02-04 10:13:10 -05:00
Sebastian Thomschke
ba4e52ca40
NO-JIRA Fix compiler warning in FederationStreamConnectMessage v2
...
Second attempt to fix the following compiler warning that is reported in Travis builds, this time using the correct cast type `Class<?>[]` which prevents temporary object allocation because of var-args handling:
```java
/home/travis/build/apache/activemq-artemis/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/protocol/core/impl/wireformat/FederationStreamConnectMessage.java:151: warning: non-varargs call of varargs method with inexact argument type for last parameter;
return (FederationPolicy) Class.forName(clazz).getConstructor(null).newInstance();
cast to Class<?> for a varargs call
cast to Class<?>[] for a non-varargs call and to suppress this warning
```
2020-02-03 19:22:04 +01:00
Clebert Suconic
4172ffec82
This closes #2968
2020-02-03 11:07:46 -05:00
Francesco Nigro
09fe47884b
Revert "NO-JIRA Fix compiler warning in FederationStreamConnectMessage"
...
This reverts commit 9fe17d40
2020-02-03 11:07:46 -05:00
Justin Bertram
ee592d1d77
This closes #2964
2020-02-03 09:56:39 -06:00
Sebastian Thomschke
26b5ad439c
NO-JIRA Remove redundant instanceof check in CoreAmqpConverter
...
message is of type ServerJMSMessage, thus the test `if (message instanceof ServerJMSMessage)` always yields true.
2020-02-03 09:56:39 -06:00
Justin Bertram
34e58a9f40
This closes #2963
2020-02-03 09:54:43 -06:00
sebthom
4bc5c6f2a8
NO-JIRA Add serialVersionUID and remove redundant casts
...
Adding serialVersionUID to WildcardConfiguration since it is
serializable. Without serialVersionUID being specified a new one is
generated on each compilation which prevents object deserialization
between releases.
2020-02-03 09:54:43 -06:00
Justin Bertram
bfd943a06c
This closes #2962
2020-02-03 09:53:13 -06:00
Sebastian Thomschke
85a1c753d7
NO-JIRA Wrong autoDeleteDelay value passed to createSharedQueue
2020-02-03 09:53:13 -06:00
Justin Bertram
41991e22e6
This closes #2961
2020-02-03 09:51:49 -06:00
Sebastian Thomschke
3797b62420
NO-JIRA Remove unnecessary null-check in ExpiryScanner
2020-02-03 09:51:49 -06:00
Justin Bertram
c2f7e9e292
This closes #2956
2020-02-03 09:44:17 -06:00
sebthom
cfa11bbadc
ARTEMIS-2610 Improve ActiveMQServer.getConnectionCount()
2020-02-03 09:44:17 -06:00
Christopher L. Shannon
d1558f172b
This closes #2958
2020-01-30 15:54:13 -05:00
Christopher L. Shannon
7ad2d0f71a
This closes #2959
2020-01-30 15:53:12 -05:00
Christopher L. Shannon
e16240825a
This closes #2957
2020-01-30 15:50:44 -05:00
Christopher L. Shannon
edf1985fb6
This closes #2960
2020-01-30 15:48:21 -05:00
Sebastian Thomschke
9fe17d4081
NO-JIRA Fix compiler warning in FederationStreamConnectMessage
...
This fixes the following compiler warning that is reported in Travis builds:
```
/home/travis/build/apache/activemq-artemis/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/protocol/core/impl/wireformat/FederationStreamConnectMessage.java:151: warning: non-varargs call of varargs method with inexact argument type for last parameter;
return (FederationPolicy) Class.forName(clazz).getConstructor(null).newInstance();
cast to Class<?> for a varargs call
cast to Class<?>[] for a non-varargs call and to suppress this warning
```
2020-01-29 22:39:52 +01:00
Sebastian Thomschke
0250f84921
NO-JIRA Fix Javadoc warning in ActiveMQTestBase
...
Fixes Javadoc warnings "Javadoc: Exception Exception is not declared" and "Javadoc: Exception InterruptedException is not declared"
2020-01-29 17:34:08 +01:00
Sebastian Thomschke
c117976e3a
NO-JIRA Fix Javadoc @link syntax in ActiveMQServerConsumerPlugin
...
Fixes Javadoc warning "Javadoc: Missing closing brace for inline tag"
2020-01-29 17:21:53 +01:00
Sebastian Thomschke
a3aa669827
NO-JIRA Fix compiler warning in FileConfigurationParserTest
...
Fixes compiler warning "Unnecessary cast from String to String".
2020-01-29 17:15:53 +01:00
Clebert Suconic
0be433ee73
This closes #2955
2020-01-28 09:34:15 -05:00
brusdev
7a087de266
ARTEMIS-2601 Update jetty version to 9.4.26.v20200117
...
Add required dependency org.apache.geronimo.specs:geronimo-jaspic_1.0_spec.
2020-01-27 12:50:35 +01:00
Wei Yang
20ca545555
This closes #2885
2020-01-23 11:23:16 +08:00
Wei Yang
1d1f0625db
ARTEMIS-2544 Remove rolledback PageTransactionInfo to free up memory
2020-01-23 11:23:14 +08:00
Justin Bertram
9e2705c6dc
This closes #2913
2020-01-22 15:32:55 -06:00
Sebastian Thomschke
cf26103bb2
ARTEMIS-2571 Remove synchronization of ActiveMQServerImpl#getSessions()
2020-01-22 15:32:55 -06:00
Clebert Suconic
2179aea627
This closes #2937
2020-01-21 14:20:04 -05:00