Skip to content

Commit

Permalink
revert ImplicitDeleted back to Deleted
Browse files Browse the repository at this point in the history
  • Loading branch information
sjenning committed Feb 25, 2019
1 parent b121a26 commit 6e0c04d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/controller/controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ func (c *Controller) syncHandler(key string) error {
if errors.IsNotFound(err) {
// pod is deleted
glog.Infof("pod %s is deleted", name)
c.eventStore.Add(namespace, name, "ImplicitDeleted", "")
c.eventStore.Add(namespace, name, "Deleted", "")
return nil
}
}
Expand Down

0 comments on commit 6e0c04d

Please sign in to comment.