From c810b99244dc45ca574927c9b0c0841a6b249fde Mon Sep 17 00:00:00 2001 From: Csaba Hoch Date: Tue, 31 Jan 2017 18:29:35 +0100 Subject: [PATCH] Make "it" unambiguous It wasn't clear whether "it" referred to async_threshold or async_threshold_window. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1350b27..bc0b14b 100644 --- a/README.md +++ b/README.md @@ -279,7 +279,7 @@ This will use async messaging until the mailbox exceeds 20 messages, at which point synchronous messaging will be used, and switch back to asynchronous, when size reduces to `20 - 5 = 15`. -If you wish to disable this behaviour, simply set it to `undefined`. It defaults +If you wish to disable this behaviour, simply set `async_threshold` to `undefined`. It defaults to a low number to prevent the mailbox growing rapidly beyond the limit and causing problems. In general, lager should process messages as fast as they come in, so getting 20 behind should be relatively exceptional anyway.