ARTEMIS-1244 Retain flag code todo comment
Identified possible bug in MQTT receive of missing retained flag.
This commit is contained in:
parent
e801df7974
commit
2b80426153
|
@ -64,6 +64,7 @@ public class MQTTInterceptorPropertiesTest extends MQTTTestSupport {
|
|||
MqttFixedHeader header = message.fixedHeader();
|
||||
assertNotNull(header.messageType());
|
||||
assertEquals(header.qosLevel().value(), AT_MOST_ONCE);
|
||||
// TODO resolve the following line based on result of ARTEMIS-1244, currently fails (2.1.0)
|
||||
assertEquals(header.isRetain(), expectedProperties.get(RETAINED));
|
||||
} catch (Throwable t) {
|
||||
collector.addError(t);
|
||||
|
|
Loading…
Reference in New Issue