Liu-YanP commented on issue #13245:
URL: https://github.com/apache/dubbo/issues/13245#issuecomment-1774383837
已经解决了。升级dubbo版本后需要同步升级protibuf-Java版本到3.22.0
```
private DebugInfo() {
stackEntries_ =
com.google.protobuf.LazyStringArrayList.emptyList();
detail_ = "";
}
```
这里调用了protibuf-Java 中emptyList()方法,在3.22.0版本之前该方法是非public方法。会报错
3.22.0版本LazyStringArrayList 类之前的 emptyList()方法
```
static LazyStringArrayList emptyList() {
return EMPTY_LIST;
}
```
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]