Skip to content

Commit

Permalink
fix(getAllPluginInfo): fix return type (#1310) (#1313)
Browse files Browse the repository at this point in the history
Co-authored-by: chini mukhopadhyay <chini@cloudera.com>
(cherry picked from commit b3ede47)

Co-authored-by: Chinikins <Chinikins@gmail.com>
  • Loading branch information
mergify[bot] and Chinikins committed Aug 25, 2020
1 parent e8e9b8c commit 72c2cef
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ class PluginInfoController(

@ApiOperation(value = "Get all plugin info objects")
@RequestMapping(method = [RequestMethod.GET])
fun getAllPluginInfo(@RequestParam(value = "service", required = false) service: String?): List<Map<*, *>> {
fun getAllPluginInfo(@RequestParam(value = "service", required = false) service: String?): List<*> {
return front50Service.getPluginInfo(service)
}

Expand Down

0 comments on commit 72c2cef

Please sign in to comment.