File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ pgrename(const char *from, const char *to)
21
21
/* set errno? */
22
22
return -1 ;
23
23
Sleep (100 ); /* ms */
24
- if (loops == 10 )
24
+ if (loops == 30 )
25
25
#ifndef FRONTEND
26
26
elog (LOG , "could not rename \"%s\" to \"%s\", continuing to try" ,
27
27
from , to );
@@ -32,7 +32,7 @@ pgrename(const char *from, const char *to)
32
32
loops ++ ;
33
33
}
34
34
35
- if (loops > 10 )
35
+ if (loops > 30 )
36
36
#ifndef FRONTEND
37
37
elog (LOG , "completed rename of \"%s\" to \"%s\"" , from , to );
38
38
#else
@@ -53,7 +53,7 @@ pgunlink(const char *path)
53
53
/* set errno? */
54
54
return -1 ;
55
55
Sleep (100 ); /* ms */
56
- if (loops == 10 )
56
+ if (loops == 30 )
57
57
#ifndef FRONTEND
58
58
elog (LOG , "could not unlink \"%s\", continuing to try" ,
59
59
path );
@@ -64,7 +64,7 @@ pgunlink(const char *path)
64
64
loops ++ ;
65
65
}
66
66
67
- if (loops > 10 )
67
+ if (loops > 30 )
68
68
#ifndef FRONTEND
69
69
elog (LOG , "completed unlink of \"%s\"" , path );
70
70
#else
You can’t perform that action at this time.
0 commit comments