mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-04 01:34:27 +00:00 
			
		
		
		
	Only create pprof files for gitea serv if explicitly asked for (#18068)
This commit is contained in:
		@@ -191,7 +191,7 @@ func runServ(c *cli.Context) error {
 | 
			
		||||
		return fail("Invalid repo name", "Invalid repo name: %s", reponame)
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	if setting.EnablePprof || c.Bool("enable-pprof") {
 | 
			
		||||
	if c.Bool("enable-pprof") {
 | 
			
		||||
		if err := os.MkdirAll(setting.PprofDataPath, os.ModePerm); err != nil {
 | 
			
		||||
			return fail("Error while trying to create PPROF_DATA_PATH", "Error while trying to create PPROF_DATA_PATH: %v", err)
 | 
			
		||||
		}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user