Skip to content

Commit

Permalink
[YUNIKORN-2004] Fix wrong interface name in comment (#682)
Browse files Browse the repository at this point in the history
Closes: #682

Signed-off-by: Craig Condit <[email protected]>
  • Loading branch information
brandboat authored and craigcondit committed Sep 26, 2023
1 parent 05007de commit 168bfec
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pkg/appmgmt/general/general.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,12 @@ func NewManager(apiProvider client.APIProvider, podEventHandler *PodEventHandler
}
}

// this implements AppManagementService interface
// this implements AppManager interface
func (os *Manager) Name() string {
return "general"
}

// this implements AppManagementService interface
// this implements AppManager interface
func (os *Manager) ServiceInit() error {
os.apiProvider.AddEventHandler(
&client.ResourceEventHandlers{
Expand All @@ -74,14 +74,14 @@ func (os *Manager) ServiceInit() error {
return nil
}

// this implements AppManagementService interface
// this implements AppManager interface
func (os *Manager) Start() error {
// generic app manager leverages the shared context,
// no other service, go routine is required to be started
return nil
}

// this implements AppManagementService interface
// this implements AppManager interface
func (os *Manager) Stop() {
// noop
}
Expand Down

0 comments on commit 168bfec

Please sign in to comment.