update: springboot 2.6.8 ==> 2.6.9

update: hutool 5.6.1 ==> 5.7.22
This commit is contained in:
YunaiV
2022-07-27 00:05:55 +08:00
parent 1b84f3f1ea
commit 9b785369ab
5 changed files with 22 additions and 26 deletions

View File

@@ -38,7 +38,7 @@ public class BizTraceAspect {
String operationName = getOperationName(joinPoint, trace);
Span span = tracer.buildSpan(operationName)
.withTag(Tags.COMPONENT.getKey(), "biz")
.startManual();
.start();
try {
// 执行原有方法
return joinPoint.proceed();