Skip to content

Commit

Permalink
renamed namespace to nameSpace
Browse files Browse the repository at this point in the history
  • Loading branch information
vivek-opsmx committed Jan 12, 2024
1 parent 92bca25 commit f217ec9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -510,11 +510,11 @@ class OpsmxOesController {
@PathVariable("source1") String source1,
@RequestParam(value = "description", required = false) String description,
@RequestParam(value = "isExists", required = false) Boolean isExists,
@RequestParam(value = "namespace", required = false) String namespace,
@RequestParam(value = "nameSpace", required = false) String nameSpace,
@RequestParam(value = "argoCdUrl", required = false) String argoCdUrl,
@RequestParam(value ="rolloutsEnabled", required = false) Boolean rolloutsEnabled,
@RequestParam(value = "isdUrl", required = false) String isdUrl) {
Response response = opsmxOesService.agentManifestDownloadFile(type, source, source1, description, isExists, namespace, argoCdUrl, rolloutsEnabled, isdUrl)
Response response = opsmxOesService.agentManifestDownloadFile(type, source, source1, description, isExists, nameSpace, argoCdUrl, rolloutsEnabled, isdUrl)
InputStream inputStream = response.getBody().in()
try {
byte[] manifestFile = IOUtils.toByteArray(inputStream)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ interface OpsmxOesService {
@Path('source1') String source1,
@Query('description') String description,
@Query("isExists") boolean isExists,
@Query("namespace") String namespace,
@Query("nameSpace") String nameSpace,
@Query("argoCdUrl") String argoCdUrl,
@Query("rolloutsEnabled") boolean rolloutsEnabled,
@Query("isdUrl") String isdUrl)
Expand Down

0 comments on commit f217ec9

Please sign in to comment.