Skip to content

Commit

Permalink
Update comment for Update handling.
Browse files Browse the repository at this point in the history
  • Loading branch information
aattuluri committed Oct 9, 2024
1 parent c1d7351 commit 72623ae
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion admiral/pkg/controller/admiral/job.go
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ func (d *JobController) Added(ctx context.Context, obj interface{}) error {
}

func (d *JobController) Updated(ctx context.Context, obj interface{}, oldObj interface{}) error {
//Not Required, to be handled via off boarding
//Not Required, this is a no-op as as Add event already handles registering this as a mesh client
return nil
}

Expand Down
2 changes: 1 addition & 1 deletion admiral/pkg/controller/admiral/monovertex.go
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ func (d *MonoVertexController) Added(ctx context.Context, obj interface{}) error
}

func (d *MonoVertexController) Updated(ctx context.Context, obj interface{}, oldObj interface{}) error {
//Not Required, to be handled via off boarding
//Not Required, this is a no-op as as Add event already handles registering this as a mesh client
return nil
}

Expand Down
2 changes: 1 addition & 1 deletion admiral/pkg/controller/admiral/vertex.go
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ func (d *VertexController) Added(ctx context.Context, obj interface{}) error {
}

func (d *VertexController) Updated(ctx context.Context, obj interface{}, oldObj interface{}) error {
//Not Required, to be handled via off boarding
//Not Required, this is a no-op as Add event already handles registering this as a mesh client
return nil
}

Expand Down

0 comments on commit 72623ae

Please sign in to comment.