Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

类AckRequestMgr是不是有bug #7

Open
csoftware opened this issue Jun 17, 2021 · 0 comments
Open

类AckRequestMgr是不是有bug #7

csoftware opened this issue Jun 17, 2021 · 0 comments

Comments

@csoftware
Copy link

  1. bug所在

     @Override
     public void run() {
         queue.remove(sessionId);
         timeout();
     }
    
  2. bug的修复

         @Override
         public void run() {
             RequestTask requestTask = queue.remove(sessionId);
             if (requestTask != null) {
                 timeout();
             }
         }
    
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant