Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: 创建定时任务参数校验异常 #3245 #3252

Merged
merged 1 commit into from
Oct 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ InternalResponse<ServiceTaskExecuteResult> executeTask(
* @throws TaskExecuteAuthFailedException 鉴权失败抛出异常
*/
void authExecuteTask(
long appId, long taskId, long cronTaskId, String cronName,
long appId, long taskId, Long cronTaskId, String cronName,
List<ServiceTaskVariable> variableList, String operator
) throws TaskExecuteAuthFailedException;
}
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ public InternalResponse<ServiceTaskExecuteResult> executeTask(long appId, long t
public void authExecuteTask(
long appId,
long taskId,
long cronTaskId,
Long cronTaskId,
String cronName,
List<ServiceTaskVariable> variableList,
String operator
Expand All @@ -115,7 +115,6 @@ public void authExecuteTask(
request.setAppId(appId);
request.setOperator(operator);
request.setPlanId(taskId);
request.setCronTaskId(cronTaskId);
request.setTaskName(cronName);
request.setTaskVariables(variableList);
request.setStartupMode(3);
Expand Down
Loading