summaryrefslogtreecommitdiff
path: root/java/systests
diff options
context:
space:
mode:
authorAlex Rudyy <orudyy@apache.org>2013-03-29 13:26:35 +0000
committerAlex Rudyy <orudyy@apache.org>2013-03-29 13:26:35 +0000
commita431f57e425081612b5ea846ab50a6f1d87b314d (patch)
treeac9aa4bb2dc949bc8e96c29b016cf2ae7557670b /java/systests
parent0c2bbd4aafa9d6fe7954a6ecdc6451c10f8d578b (diff)
downloadqpid-python-a431f57e425081612b5ea846ab50a6f1d87b314d.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/qpid@1462471 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/systests')
-rw-r--r--java/systests/src/main/java/org/apache/qpid/systest/rest/BrokerRestTest.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/java/systests/src/main/java/org/apache/qpid/systest/rest/BrokerRestTest.java b/java/systests/src/main/java/org/apache/qpid/systest/rest/BrokerRestTest.java
index 20905175ee..ba767a474a 100644
--- a/java/systests/src/main/java/org/apache/qpid/systest/rest/BrokerRestTest.java
+++ b/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);