diff options
| author | Alex Rudyy <orudyy@apache.org> | 2013-03-29 13:26:35 +0000 |
|---|---|---|
| committer | Alex Rudyy <orudyy@apache.org> | 2013-03-29 13:26:35 +0000 |
| commit | 9f22988ff2d01008ea0cd97d1b2fb8cb8bce96a1 (patch) | |
| tree | 1b95ccf2e58f2ae3eb0dcc16b5cfe648791eec4e /qpid/java/systests/src | |
| parent | 39c88de12e76fc3555c60c95a56183ac1603d0ef (diff) | |
| download | qpid-python-9f22988ff2d01008ea0cd97d1b2fb8cb8bce96a1.tar.gz | |
QPID-4677: Fix incorrect attribute names and update web management console UI affected by the changes in the attribute names
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1462471 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/systests/src')
| -rw-r--r-- | qpid/java/systests/src/main/java/org/apache/qpid/systest/rest/BrokerRestTest.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/qpid/java/systests/src/main/java/org/apache/qpid/systest/rest/BrokerRestTest.java b/qpid/java/systests/src/main/java/org/apache/qpid/systest/rest/BrokerRestTest.java index 20905175ee..ba767a474a 100644 --- a/qpid/java/systests/src/main/java/org/apache/qpid/systest/rest/BrokerRestTest.java +++ b/qpid/java/systests/src/main/java/org/apache/qpid/systest/rest/BrokerRestTest.java @@ -130,8 +130,8 @@ public class BrokerRestTest extends QpidRestTestCase invalidAttributes.put(Broker.DEFAULT_AUTHENTICATION_PROVIDER, "non-existing-provider"); invalidAttributes.put(Broker.DEFAULT_VIRTUAL_HOST, "non-existing-host"); invalidAttributes.put(Broker.ALERT_THRESHOLD_MESSAGE_AGE, -1000); - invalidAttributes.put(Broker.ALERT_THRESHOLD_MESSAGE_COUNT, -2000); - invalidAttributes.put(Broker.ALERT_THRESHOLD_QUEUE_DEPTH, -3000); + invalidAttributes.put(Broker.ALERT_THRESHOLD_QUEUE_DEPTH_MESSAGES, -2000); + invalidAttributes.put(Broker.ALERT_THRESHOLD_QUEUE_DEPTH_BYTES, -3000); invalidAttributes.put(Broker.ALERT_THRESHOLD_MESSAGE_SIZE, -4000); invalidAttributes.put(Broker.ALERT_REPEAT_GAP, -5000); invalidAttributes.put(Broker.FLOW_CONTROL_SIZE_BYTES, -7000); @@ -173,8 +173,8 @@ public class BrokerRestTest extends QpidRestTestCase brokerAttributes.put(Broker.DEFAULT_AUTHENTICATION_PROVIDER, ANONYMOUS_AUTHENTICATION_PROVIDER); brokerAttributes.put(Broker.DEFAULT_VIRTUAL_HOST, TEST3_VIRTUALHOST); brokerAttributes.put(Broker.ALERT_THRESHOLD_MESSAGE_AGE, 1000); - brokerAttributes.put(Broker.ALERT_THRESHOLD_MESSAGE_COUNT, 2000); - brokerAttributes.put(Broker.ALERT_THRESHOLD_QUEUE_DEPTH, 3000); + brokerAttributes.put(Broker.ALERT_THRESHOLD_QUEUE_DEPTH_MESSAGES, 2000); + brokerAttributes.put(Broker.ALERT_THRESHOLD_QUEUE_DEPTH_BYTES, 3000); brokerAttributes.put(Broker.ALERT_THRESHOLD_MESSAGE_SIZE, 4000); brokerAttributes.put(Broker.ALERT_REPEAT_GAP, 5000); brokerAttributes.put(Broker.FLOW_CONTROL_SIZE_BYTES, 7000); |
