huskyui opened a new issue, #4421:
URL: https://github.com/apache/rocketmq/issues/4421

   ```
       public void deleteTopic(final String topic) {
           try {
               try {
                   this.lock.writeLock().lockInterruptibly();
                   this.topicQueueTable.remove(topic);
               } finally {
                   this.lock.writeLock().unlock();
               }
           } catch (Exception e) {
               log.error("deleteTopic Exception", e);
           }
       }
   ```
   最里面是try finally我理解,外面这一层的try catch我不理解它的意义是啥
   


-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to