removed optionalMessage as parameter and added into StepExecutionRequest

bean
This commit is contained in:
Francesco Mangiacrapa 2024-04-11 09:49:36 +02:00
parent 05e9d3d426
commit ad646a8bf9
1 changed files with 1 additions and 1 deletions

View File

@ -335,7 +335,7 @@ public class ProjectsCaller {
LOG.info("performStep called for profileID: {}, projectID: {}. Optional message exists?: {}", profileID, projectID, optionalMessage!=null);
Projects<Project> client = (Projects<Project>) getClient(profileID);
StepExecutionRequest request = new StepExecutionRequest(stepID, optionalMessage, options);
Project project = client.performStep(projectID, optionalMessage, request);
Project project = client.performStep(projectID, request);
LOG.info("performStep returning project ID: " + project.getId());
return project;