(9.1+) System Notification receiver time out configuration

Describes how to configure the System Notification Receiver time-out in the sys.config file. ExampleThe following is an example of the sys.config file:[ %% SASL config {sasl, [ {sasl_error_logger, {file, "log/sasl-error.log"}}, {errlog_type, error}, {error_logger_mf_dir, "log/sasl"}, % Log directory {error_logger_mf_maxbytes, 10485760}, % 10 MB max file size {error_logger_mf_maxfiles, 5}, % 5 files max {utc_log,true}]}, {lager, [ {handlers, [ {lager_console_backend, info}, {lager_file_backend, [{file,"log/debug.log"},{level,debug},{size,10485760},{date,"$D0"},{count,5}]}, {lager_file_backend, [{file,"log/error.log"},{level,error},{size,10485760},{date,"$D0"},{count,5}]} ]} ]}, {notification_receiver, [ {initial_status_request_timeout,2000} % Time to wait for the core instances response to an initial status request ]}, "site" ].The following shows where to configure the time-out:{notification_receiver, [ {initial_status_request_timeout,2000} % Time to wait for the core instances response to an initial status request ]}