소스 검색

Fix check code for --cluster-store and --cluster-advertise in config_unix.go

Signed-off-by: Wonjun Kim <wonjun.kim@navercorp.com>
Wonjun Kim 9 년 전
부모
커밋
4f671ae85e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      daemon/config_unix.go

+ 1 - 1
daemon/config_unix.go

@@ -123,7 +123,7 @@ func (config *Config) GetAllRuntimes() map[string]types.Runtime {
 }
 
 func (config *Config) isSwarmCompatible() error {
-	if config.IsValueSet("cluster-store") || config.IsValueSet("cluster-advertise") {
+	if config.ClusterStore != "" || config.ClusterAdvertise != "" {
 		return fmt.Errorf("--cluster-store and --cluster-advertise daemon configurations are incompatible with swarm mode")
 	}
 	if config.LiveRestore {