summaryrefslogtreecommitdiff
path: root/common/constants
diff options
context:
space:
mode:
authorZhizhen He <hezhizhen.yi@gmail.com>2023-03-23 22:04:34 +0800
committerZhizhen He <hezhizhen.yi@gmail.com>2023-08-25 20:42:43 +0800
commit10e5aeb1ba420da20c9d467e300205eed07055b9 (patch)
tree46b0d1373c85184a55f5e695ac55c020f92b3973 /common/constants
parentMerge pull request #4939 from wlq1212/e2e/compatibility (diff)
downloadkubeedge-10e5aeb1ba420da20c9d467e300205eed07055b9.tar.gz
fix typo and update comments
Signed-off-by: Zhizhen He <hezhizhen.yi@gmail.com>
Diffstat (limited to 'common/constants')
-rw-r--r--common/constants/default.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/constants/default.go b/common/constants/default.go
index 2b5134bc3..79cb68ecd 100644
--- a/common/constants/default.go
+++ b/common/constants/default.go
@@ -157,10 +157,10 @@ const (
CSIOperationTypeControllerUnpublishVolume = "controllerunpublishvolume"
CSISyncMsgRespTimeout = 1 * time.Minute
+ ServerAddress = "127.0.0.1"
// ServerPort is the default port for the edgecore server on each host machine.
// May be overridden by a flag at startup in the future.
- ServerAddress = "127.0.0.1"
- ServerPort = 10350
+ ServerPort = 10350
// MessageSuccessfulContent is the successful content value of Message struct
MessageSuccessfulContent string = "OK"