From 863a0c44e0f025e157c4084768d3b25c75b94c61 Mon Sep 17 00:00:00 2001 From: Yi Ou Date: Tue, 26 Mar 2019 23:12:13 +0100 Subject: [PATCH] Make the sample command easier to follow A tiny change suggestion due to: - `-SIGHUP` was mentioned in the previous text - `-SIGHUP` is easier to read than `-1` - `-1` can be easily mixed up with `-l` Fixes #10592 --- docs/static/reloading-config.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/static/reloading-config.asciidoc b/docs/static/reloading-config.asciidoc index 1a16a379c..db225a102 100644 --- a/docs/static/reloading-config.asciidoc +++ b/docs/static/reloading-config.asciidoc @@ -25,7 +25,7 @@ process running Logstash. For example: [source,shell] ---------------------------------- -kill -1 14175 +kill -SIGHUP 14175 ---------------------------------- Where 14175 is the ID of the process running Logstash.