diff options
| author | Gordon Sim <gsim@apache.org> | 2008-09-22 17:39:13 +0000 |
|---|---|---|
| committer | Gordon Sim <gsim@apache.org> | 2008-09-22 17:39:13 +0000 |
| commit | 9f81495d5b60c58b5278d0962511ebadf1110e4b (patch) | |
| tree | 8379c639a110ec00b0b2b5f917ab9ceea30a71c2 /qpid/cpp | |
| parent | 052bab51a84dc7115e26f8addc24c087d37c2b00 (diff) | |
| download | qpid-python-9f81495d5b60c58b5278d0962511ebadf1110e4b.tar.gz | |
Keep same default policy as before.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@697916 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp')
| -rw-r--r-- | qpid/cpp/src/qpid/broker/QueuePolicy.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/src/qpid/broker/QueuePolicy.cpp b/qpid/cpp/src/qpid/broker/QueuePolicy.cpp index 8aeaaabd55..c8980b8b4d 100644 --- a/qpid/cpp/src/qpid/broker/QueuePolicy.cpp +++ b/qpid/cpp/src/qpid/broker/QueuePolicy.cpp @@ -109,7 +109,7 @@ std::string QueuePolicy::getType(const FieldTable& settings) transform(t.begin(), t.end(), t.begin(), tolower); if (t == REJECT || t == FLOW_TO_DISK || t == RING || t == RING_STRICT) return t; } - return REJECT; + return FLOW_TO_DISK; } void QueuePolicy::setDefaultMaxSize(uint64_t s) |
