[fix-config-change-logs-issue] fixed the issue in create.go file

This commit is contained in:
irti
2019-04-25 14:16:42 +05:00
parent bfff7104aa
commit 40aa9955cd

View File

@@ -17,7 +17,6 @@ func (r ResourceCreatedHandler) Handle() error {
logrus.Errorf("Resource creation handler received nil resource")
} else {
config, _ := r.GetConfig()
logrus.Infof("Resource '%s' of type '%s' in namespace '%s' has been created", config.ResourceName, config.Type, config.Namespace)
// process resource based on its type
doRollingUpgrade(config)
}