Skip to content

Commit b13ac47

Browse files
committed
[fix][config] skip absent dir
1 parent c66b34f commit b13ac47

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/task/task/checker/topology.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ func (s *step2CheckDataDirectoryDuplicate) Execute(ctx *context.Context) error {
139139
used := map[string]bool{}
140140
for _, dc := range s.dcs {
141141
dataDir := dc.GetDataDir()
142-
if len(dataDir) == 0 {
142+
if len(dataDir) == 0 || dataDir == comm.SERVICE_DIR_ABSENT {
143143
continue
144144
}
145145

0 commit comments

Comments
 (0)