diff options
author | Rajith Muditha Attapattu <rajith@apache.org> | 2011-06-28 19:29:15 +0000 |
---|---|---|
committer | Rajith Muditha Attapattu <rajith@apache.org> | 2011-06-28 19:29:15 +0000 |
commit | 4d21ff7ff436382467115f88d9764101a29ad090 (patch) | |
tree | 5c336f7eb8148c6843de7f697dcc904bce652d22 /java/tools/src | |
parent | 29881fb0cd802cb6cf946cebb2093d89afe01e61 (diff) | |
download | qpid-python-4d21ff7ff436382467115f88d9764101a29ad090.tar.gz |
Merge branch 'perf-tools' into trunk
Conflicts:
qpid/java/tools/src/main/java/org/apache/qpid/tools/TestParams.java
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1140797 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/tools/src')
-rw-r--r-- | java/tools/src/main/java/org/apache/qpid/tools/TestParams.java | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/java/tools/src/main/java/org/apache/qpid/tools/TestParams.java b/java/tools/src/main/java/org/apache/qpid/tools/TestParams.java index 70e94a2346..f03d5c1310 100644 --- a/java/tools/src/main/java/org/apache/qpid/tools/TestParams.java +++ b/java/tools/src/main/java/org/apache/qpid/tools/TestParams.java @@ -25,18 +25,18 @@ import javax.jms.Session; public class TestParams { /* - * By default the connection URL is used. + * By default the connection URL is used. * This allows a user to easily specify a fully fledged URL any given property. * Ex. SSL parameters - * + * * By providing a host & port allows a user to simply override the URL. * This allows to create multiple clients in test scripts easily, - * without having to deal with the long URL format. + * without having to deal with the long URL format. */ private String url = "amqp://guest:guest@clientid/testpath?brokerlist='tcp://localhost:5672'"; - + private String host = ""; - + private int port = -1; private String address = "queue; {create : always}"; @@ -65,7 +65,7 @@ public class TestParams private boolean random_msg_size = false; - private String msgType = "byte"; + private String msgType = "bytes"; public TestParams() { |