Gustavo Michels
Gustavo Michels
I have a similar issue due to the requirement on `msal==1.6.0` and was wondering if there was ever a solution to this.
The use case is clear, the information is sent however the host/key did not exist, therefore sending the value failed, although the actual connection was successful (which is why 'response'...
``` logger.info(resp.get('info')) resp_info = dict(u.split(": ") for u in resp.get('info').split("; ")) if resp.get('response') != 'success' or int(resp_info['failed']) > 0: logger.error('Got error from Zabbix: %s', resp) ``` ``` 59,60c60,61 < if...