Compare commits

..

2 Commits

1 changed files with 6 additions and 2 deletions

View File

@ -64,9 +64,13 @@ def ping_monitor(hook_config, config_filename, state, monitoring_log_level, dry_
auth = requests.auth.HTTPBasicAuth(username, password)
logger.info(f'{config_filename}: Using basic auth with user {username} for Ntfy')
elif username is not None:
logger.warn(f'{config_filename}: Password missing for Ntfy authentication, defaulting to no auth')
logger.warn(
f'{config_filename}: Password missing for Ntfy authentication, defaulting to no auth'
)
elif password is not None:
logger.warn(f'{config_filename}: Username missing for Ntfy authentication, defaulting to no auth')
logger.warn(
f'{config_filename}: Username missing for Ntfy authentication, defaulting to no auth'
)
if not dry_run:
logging.getLogger('urllib3').setLevel(logging.ERROR)