You are viewing a plain text version of this content. The canonical link for it is here.
Posted to gitbox@activemq.apache.org by GitBox <gi...@apache.org> on 2021/10/06 17:40:39 UTC

[GitHub] [activemq-artemis] jbertram commented on a change in pull request #3786: ARTEMIS-3519 OperationContext not respecting store lineups and dones on store only

jbertram commented on a change in pull request #3786:
URL: https://github.com/apache/activemq-artemis/pull/3786#discussion_r723535960



##########
File path: artemis-server/src/main/java/org/apache/activemq/artemis/core/persistence/impl/journal/OperationContextImpl.java
##########
@@ -277,13 +283,13 @@ public void run() {
                   OperationContextImpl.clearContext();
                   task.done();
                } finally {
-                  executorsPending.decrementAndGet();
+                  EXECUTORS_PENDING_UPDATER.decrementAndGet(OperationContextImpl.this);

Review comment:
       Should this be just:
   ```
   EXECUTORS_PENDING_UPDATER.decrementAndGet(this);
   ```
   As it is below?




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: gitbox-unsubscribe@activemq.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org