diff options
| author | Martin Ritchie <ritchiem@apache.org> | 2009-04-03 13:46:43 +0000 |
|---|---|---|
| committer | Martin Ritchie <ritchiem@apache.org> | 2009-04-03 13:46:43 +0000 |
| commit | 70bb32c02ee6102eec92648101819d2cbbd3c8c9 (patch) | |
| tree | 3bf59169bcccfc3d2a30e6009f96a3d6a9e7f6ee /qpid/java | |
| parent | eef4cf28ebb5d45f0b44009b18be1cc36df39073 (diff) | |
| download | qpid-python-70bb32c02ee6102eec92648101819d2cbbd3c8c9.tar.gz | |
QPID-1784 : Fixed compile error
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@761674 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java')
| -rw-r--r-- | qpid/java/broker/src/main/java/org/apache/qpid/server/queue/FlowableBaseQueueEntryList.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/java/broker/src/main/java/org/apache/qpid/server/queue/FlowableBaseQueueEntryList.java b/qpid/java/broker/src/main/java/org/apache/qpid/server/queue/FlowableBaseQueueEntryList.java index 10d2f0ee2b..b252c7304e 100644 --- a/qpid/java/broker/src/main/java/org/apache/qpid/server/queue/FlowableBaseQueueEntryList.java +++ b/qpid/java/broker/src/main/java/org/apache/qpid/server/queue/FlowableBaseQueueEntryList.java @@ -428,7 +428,7 @@ public abstract class FlowableBaseQueueEntryList implements QueueEntryList } //If we have become flowed or have more capacity since we stopped then schedule the thread to run again. - if (!finshedInhaling _flowed.get() && _atomicQueueInMemory.get() < _memoryUsageMaximum) + if (!finshedInhaling && _flowed.get() && _atomicQueueInMemory.get() < _memoryUsageMaximum) { if (_log.isInfoEnabled()) { |
