Quellcode durchsuchen

Merge pull request #34396 from Microsoft/jjh/movescratch

LCOW: Move toolsScratchPath to /tmp
Sebastiaan van Stijn vor 8 Jahren
Ursprung
Commit
d4f6db83c2
1 geänderte Dateien mit 1 neuen und 2 gelöschten Zeilen
  1. 1 2
      daemon/graphdriver/lcow/lcow.go

+ 1 - 2
daemon/graphdriver/lcow/lcow.go

@@ -96,8 +96,7 @@ const (
 
 	// toolsScratchPath is a location in a service utility VM that the tools can use as a
 	// scratch space to avoid running out of memory.
-	// TODO @jhowardmsft. I really dislike this path! But needs a platform change or passing parameters to the tools.
-	toolsScratchPath = "/mnt/gcs/LinuxServiceVM/scratch"
+	toolsScratchPath = "/tmp/scratch"
 
 	// svmGlobalID is the ID used in the serviceVMs map for the global service VM when running in "global" mode.
 	svmGlobalID = "_lcow_global_svm_"