File 0464-Correct-dump_log_write_threshold-default-value.patch of Package erlang
From 96c328a5de1c82e1931055ab8f5c34080368a6af Mon Sep 17 00:00:00 2001
From: Michael Davis <michael.davis@nfiindustries.com>
Date: Thu, 25 Jul 2019 15:27:57 -0500
Subject: [PATCH] Correct dump_log_write_threshold default value
```erl
1> mnesia:system_info(dump_log_time_threshold).
1000
```
Looks like a missing `0`!
---
lib/mnesia/doc/src/Mnesia_chap7.xmlsrc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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
--
2.16.4