summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKubeEdge Bot <48982446+kubeedge-bot@users.noreply.github.com>2020-02-28 21:12:24 +0800
committerGitHub <noreply@github.com>2020-02-28 21:12:24 +0800
commita1628bd8fe90173cd809f88a859c4eb274eb5c78 (patch)
tree7d5c4e1ca26e7b4bd71832dce9012233f4d979bb
parentMerge pull request #1511 from fisherxu/automated-cherry-pick-of-#1496-upstrea... (diff)
parentfix writing mistake in synccontroller (diff)
downloadkubeedge-a1628bd8fe90173cd809f88a859c4eb274eb5c78.tar.gz
Merge pull request #1510 from fisherxu/automated-cherry-pick-of-#1491-upstream-release-1.2
Automated cherry pick of #1491: fix writing mistake in synccontroller
-rw-r--r--cloud/pkg/synccontroller/synccontroller.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cloud/pkg/synccontroller/synccontroller.go b/cloud/pkg/synccontroller/synccontroller.go
index c1835015c..2af9270f1 100644
--- a/cloud/pkg/synccontroller/synccontroller.go
+++ b/cloud/pkg/synccontroller/synccontroller.go
@@ -218,7 +218,7 @@ func (sctl *SyncController) manageObjectSync(syncs []*v1alpha1.ObjectSync) {
sctl.manageEndpoint(sync)
// TODO: add device here
default:
- klog.Errorf("Unsupported object kind: %v", sync.Spec.ObjectKind)
+ klog.Errorf("Unsupported object kind: %v", sync.Spec.ObjectKind)
}
}
}