Skip to content

Commit

Permalink
fix(kubernetes): return kubernetes server group managers (#4583) (#4584)
Browse files Browse the repository at this point in the history
(cherry picked from commit ccb864e)

Co-authored-by: Maggie Neterval <mneterval@google.com>
Co-authored-by: Ethan Rogers <ethanfrogers@users.noreply.github.com>
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
  • Loading branch information
3 people committed May 18, 2020
1 parent 28c205d commit f670929
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,13 @@
@RestController
@RequestMapping("/applications/{application}/serverGroupManagers")
public class ServerGroupManagerController {
final List<ServerGroupManagerProvider<ServerGroupManager>> serverGroupManagerProviders;
final List<ServerGroupManagerProvider<? extends ServerGroupManager>> serverGroupManagerProviders;

final RequestQueue requestQueue;

@Autowired
public ServerGroupManagerController(
List<ServerGroupManagerProvider<ServerGroupManager>> serverGroupManagerProviders,
List<ServerGroupManagerProvider<? extends ServerGroupManager>> serverGroupManagerProviders,
RequestQueue requestQueue) {
this.serverGroupManagerProviders = serverGroupManagerProviders;
this.requestQueue = requestQueue;
Expand Down

0 comments on commit f670929

Please sign in to comment.