소스 검색

Merge pull request #23074 from jstarks/fix_windows_graph_name

Windows: fix Windows graph driver name
Brian Goff 9 년 전
부모
커밋
e0ee0ac789
1개의 변경된 파일3개의 추가작업 그리고 2개의 파일을 삭제
  1. 3 2
      daemon/graphdriver/windows/windows.go

+ 3 - 2
daemon/graphdriver/windows/windows.go

@@ -80,9 +80,10 @@ func InitFilter(home string, options []string, uidMaps, gidMaps []idtools.IDMap)
 	return d, nil
 	return d, nil
 }
 }
 
 
-// String returns the string representation of a driver.
+// String returns the string representation of a driver. This should match
+// the name the graph driver has been registered with.
 func (d *Driver) String() string {
 func (d *Driver) String() string {
-	return "Windows filter storage driver"
+	return "windowsfilter"
 }
 }
 
 
 // Status returns the status of the driver.
 // Status returns the status of the driver.