Browse Source

Keep session files for 7 days

Volodymyr Tkach 2 years ago
parent
commit
17b6f654c6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      session/clean.go

+ 1 - 1
session/clean.go

@@ -15,7 +15,7 @@ func Clean(tmpdir string) error {
 	}
 	for _, file := range files {
 		if len(file.Name()) == 40 {
-			if diff := time.Since(file.ModTime()); diff > 24*time.Hour {
+			if diff := time.Since(file.ModTime()); diff > ((24 * time.Hour) * 7) {
 				err = os.Remove(strings.Join([]string{tmpdir, file.Name()}, string(os.PathSeparator)))
 				if err != nil {
 					return err