fix - fix starter_decode

This commit is contained in:
wangli 2025-04-22 20:32:59 +08:00
parent fbb5c76737
commit 1a74d44007

View File

@ -31,7 +31,7 @@ public class WorkflowRequestInterceptor implements RequestInterceptor {
public void apply(RequestTemplate requestTemplate) {
Target.HardCodedTarget target = (Target.HardCodedTarget) requestTemplate.feignTarget();
String apiClassPath = target.type().getName();
if (apiClassPath.startsWith("cn.axzo.workflow")) {
if (apiClassPath.startsWith("cn.axzo.workflow.client")) {
requestTemplate.header(HEADER_W_E, "true");
}
if (apiClassPath.contains("cn.axzo.workflow.client.feign.bpmn")