fix - starter same method name invoke error
This commit is contained in:
parent
a41c6a950b
commit
00b02f7c64
@ -150,7 +150,11 @@ public class WorkflowEngineStarterMQMonitorController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@GetMapping("/v")
|
@GetMapping("/v")
|
||||||
public CommonResponse<String> consoleVersion() {
|
public CommonResponse<String> consoleVersion(@RequestParam("fix") Boolean showLastFix) {
|
||||||
return CommonResponse.success("当前 workflow-engine version: " + serviceVersion + ",\r\nfix: cn.axzo.workflow.starter.mq.retry.consumer.WorkflowEngineStarterRetryEventListener.multiMethodCache");
|
String str = "当前 workflow-engine version: " + serviceVersion;
|
||||||
|
if (showLastFix) {
|
||||||
|
str += "fix: cn.axzo.workflow.starter.mq.retry.consumer.WorkflowEngineStarterRetryEventListener.multiMethodCache";
|
||||||
|
}
|
||||||
|
return CommonResponse.success(str);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user