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

Update TaskSchedulerDocumentation.java #4772

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -67,6 +67,7 @@ public void createSchedule() throws Exception {
.andDo(this.documentationHandler.document(
requestParameters(
parameterWithName("scheduleName").description("The name for the created schedule"),
parameterWithName("platform").description("The name of the platform the task is launched"),
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you for your contribution.
Currently your solution will not build. Please add .param("platform", "default") to the param list above between lines lines 63-64.

You can build your solution by executing mvn clean package -Pfull -Dcheckstyle.skip=true in the spring-cloud-data-flow-classic-docs module.

parameterWithName("taskDefinitionName")
.description("The name of the task definition to be scheduled"),
parameterWithName("properties")
Expand Down