We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parentcb8d423 commit9cdea75Copy full SHA for 9cdea75
src/port/dirmod.c
@@ -21,7 +21,7 @@ pgrename(const char *from, const char *to)
21
/* set errno? */
22
return-1;
23
Sleep(100);/* ms */
24
-if (loops==10)
+if (loops==30)
25
#ifndefFRONTEND
26
elog(LOG,"could not rename \"%s\" to \"%s\", continuing to try",
27
from,to);
@@ -32,7 +32,7 @@ pgrename(const char *from, const char *to)
32
loops++;
33
}
34
35
-if (loops>10)
+if (loops>30)
36
37
elog(LOG,"completed rename of \"%s\" to \"%s\"",from,to);
38
#else
@@ -53,7 +53,7 @@ pgunlink(const char *path)
53
54
55
56
57
58
elog(LOG,"could not unlink \"%s\", continuing to try",
59
path);
@@ -64,7 +64,7 @@ pgunlink(const char *path)
64
65
66
67
68
69
elog(LOG,"completed unlink of \"%s\"",path);
70