wu-sheng commented on a change in pull request #6913:
URL: https://github.com/apache/skywalking/pull/6913#discussion_r628710557
##########
File path:
apm-sniffer/optional-plugins/mybatis-3.x-plugin/src/main/java/org/apache/skywalking/apm/plugin/mybatis/SqlSessionOperationInterceptor.java
##########
@@ -40,7 +41,8 @@ public void beforeMethod(EnhancedInstance objInst, Method
method, Object[] allAr
if (ContextManager.isActive()) {
lastSpan = ContextManager.activeSpan();
}
- if (lastSpan == null || lastSpan.getComponentId() !=
ComponentsDefine.MYBATIS.getId()) {
+ boolean isMyBatisEntryMethod = !(lastSpan instanceof NoopSpan) &&
(lastSpan == null || lastSpan.getComponentId() !=
ComponentsDefine.MYBATIS.getId());
Review comment:
The plugin wouldn't be notified if the core changes the implementation
one day. So, we need to polish the logic here.
--
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.
For queries about this service, please contact Infrastructure at:
[email protected]