disable sending logs in Healthchecks
Signed-off-by: Soumik Dutta <shalearkane@gmail.com>
This commit is contained in:
parent
f512d1e460
commit
99473c30a8
1 changed files with 1 additions and 1 deletions
|
@ -76,7 +76,7 @@ def initialize_monitor(hook_config, config_filename, monitoring_log_level, dry_r
|
||||||
we can send them all to Healthchecks upon a finish or failure state. But skip this if the
|
we can send them all to Healthchecks upon a finish or failure state. But skip this if the
|
||||||
"send_logs" option is false.
|
"send_logs" option is false.
|
||||||
'''
|
'''
|
||||||
if hook_config.get('send_logs') is False:
|
if hook_config.get('send_logs') is False or monitoring_log_level == logging.DISABLED:
|
||||||
return
|
return
|
||||||
|
|
||||||
ping_body_limit = max(
|
ping_body_limit = max(
|
||||||
|
|
Loading…
Reference in a new issue