Titusz

Results 44 comments of Titusz

Nice catch. You are welcome to send a pull request. Or I will look after it when I find some time :)

Having the same problem. Maybe something like this would fix it: ```python import locale encoding = locale.getpreferredencoding() stdout = process.stdout.decode(encoding, errors="replace") ``` See: https://github.com/joshua-auchincloss/hatch-cython/blob/main/src/hatch_cython/plugin.py#L314 Or alternatively try to detect the...

I was also fighting with disabling console logging. This finally worked: ```python import logging loggers = [ "LiteLLM Proxy", "LiteLLM Router", "LiteLLM" ] for logger_name in loggers: logger = logging.getLogger(logger_name)...

The core problem seems do be caused by: java.util.MissingResourceException: Can't find bundle for base name org.apache.xerces.impl.msg.XMLMessages, locale en_US. I did a short test and adding this in reachability-metadata.json seems to...