Skip to content

Commit

Permalink
changed data type for appId to string (#401)
Browse files Browse the repository at this point in the history
  • Loading branch information
vivek-opsmx authored and yugaa22 committed Aug 14, 2023
1 parent 0258265 commit 2494ab6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ class OpsmxSsdController {
@PathVariable("type") String type,
@PathVariable("source") String source,
@RequestParam(value = "account", required = false) String account,
@RequestParam(value = "appId", required = false) Integer appId,
@RequestParam(value = "appId", required = false) String appId,
@RequestParam(value = "image", required = false) String image,
@RequestParam(value = "imageTag", required = false) String imageTag,
@RequestParam(value = "stage", required = false) String stage,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ interface OpsmxSsdService {
@Path('type') String type,
@Path('source') String source,
@Query("account") String account,
@Query("appId") Integer appId,
@Query("appId") String appId,
@Query("image") String image,
@Query("imageTag") String imageTag,
@Query("stage") String stage,
Expand Down

0 comments on commit 2494ab6

Please sign in to comment.