File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 37
37
*
38
38
*
39
39
* IDENTIFICATION
40
- * $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.447 2005/03/18 03:48:49 tgl Exp $
40
+ * $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.448 2005/03/24 05:19:05 momjian Exp $
41
41
*
42
42
* NOTES
43
43
*
@@ -1246,12 +1246,12 @@ ServerLoop(void)
1246
1246
PgStatPID = pgstat_start ();
1247
1247
1248
1248
/*
1249
- * Touch the socket and lock file at least every ten minutes , to
1249
+ * Touch the socket and lock file at least every hour , to
1250
1250
* ensure that they are not removed by overzealous /tmp-cleaning
1251
1251
* tasks.
1252
1252
*/
1253
1253
now = time (NULL );
1254
- if (now - last_touch_time >= 10 * 60 )
1254
+ if (now - last_touch_time >= 60 * 60 )
1255
1255
{
1256
1256
TouchSocketFile ();
1257
1257
TouchSocketLockFile ();
You can’t perform that action at this time.
0 commit comments