aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Davis <[email protected]>2019-07-25 15:27:57 -0500
committerGitHub <[email protected]>2019-07-25 15:27:57 -0500
commit96c328a5de1c82e1931055ab8f5c34080368a6af (patch)
treeb8c29ae587f97baf77c9b54f24ff8bcb696aba99
parent22b71cc0264a1db0dd813893b883d34b7e5ee88e (diff)
downloadotp-96c328a5de1c82e1931055ab8f5c34080368a6af.tar.gz
otp-96c328a5de1c82e1931055ab8f5c34080368a6af.tar.bz2
otp-96c328a5de1c82e1931055ab8f5c34080368a6af.zip
Correct dump_log_write_threshold default value
```erl 1> mnesia:system_info(dump_log_time_threshold). 1000 ``` Looks like a missing `0`!
-rw-r--r--lib/mnesia/doc/src/Mnesia_chap7.xmlsrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/mnesia/doc/src/Mnesia_chap7.xmlsrc b/lib/mnesia/doc/src/Mnesia_chap7.xmlsrc
index ffbbdadec0..968e89a745 100644
--- a/lib/mnesia/doc/src/Mnesia_chap7.xmlsrc
+++ b/lib/mnesia/doc/src/Mnesia_chap7.xmlsrc
@@ -295,7 +295,7 @@ ok</pre>
if the log is large. Notice that the <c>Mnesia</c> system
continues to operate during log dumps.</p>
<p>By default <c>Mnesia</c> either dumps the log whenever
- 100 records have
+ 1000 records have
been written in the log or when three minutes have passed.
This is controlled by the two application parameters
<c>-mnesia dump_log_write_threshold WriteOperations</c> and