Skip to content

Commit

Permalink
feature: upgrade springboot to 2.3.5 version
Browse files Browse the repository at this point in the history
  • Loading branch information
kalencaya committed May 11, 2024
1 parent 6f26dde commit 974d989
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public ResponseEntity<ResponseVO<List<FlinkVersionOption>>> getFlinkVersionOptio
@Logging
@GetMapping("/flinkImageMappings")
@Operation(summary = "查询 Flink 镜像映射", description = "查询 Flink 镜像映射")
public ResponseEntity<ResponseVO<List<FlinkImageOption>>> getFlinkVersionOptions(FlinkVersion flinkVersion) {
public ResponseEntity<ResponseVO<List<FlinkImageOption>>> getFlinkVersionOptions(@RequestParam("flinkVersion") FlinkVersion flinkVersion) {
List<FlinkImageOption> options = wsFlinkKubernetesTemplateService.getFlinkImageOptions(flinkVersion);
return new ResponseEntity(ResponseVO.success(options), HttpStatus.OK);
}
Expand Down

0 comments on commit 974d989

Please sign in to comment.