Rafael Pinto
Rafael Pinto
I was in the middle of the refactoring from winston to this library when I hit this issue and had to rollback. Unfortunately the current log levels make it impossible...
@cspotcode > since you made it halfway through the refactor, did you try the subclassing solution I proposed? No as we avoid depending on workarounds as much as possible. But...
According to [this](https://help.nextcloud.com/t/unable-to-launch-desktop-client-on-linux-installation-seems-broken/2691/4) we just need to fix the LD_LIBRARY_PATH environment variable. `sudo nano /etc/environment` Add the following for ubuntu 64: `LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib/x86_64-linux-gnu` Or this one for ubuntu 32: `LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib/i386-linux-gnu` After...
@pasbec Your proposed cmake command fixed the problem on lubuntu 16.10. Thanks!
@gruckionvit this is an express middleware for storing sessions on Dynamodb and not just a aws-sdk wrapper.
@mt-micky I don't really remember why :P Reopening as requested. Cheers,
Fixed by preinstalling CUDA following these instructions: https://developer.nvidia.com/cuda-downloads?target_os=Linux&target_arch=x86_64&Distribution=Ubuntu&target_version=20.04&target_type=deb_local
Dummy question: Do we really need to install CUDA on the OS too as we already install it on conda? ```yaml - nvidia::cudatoolkit=11.2.72 ```
I did a quick fix locally to isolate the common behavior in internal functions but make sure we call the async methods with `await`. ```python class RedisCache(BaseCache[ValueT]): """Redis-based cache implementation...
Hey @aaronseq12. Thanks for looking into it and for taking the time to prepare a PR. My 2 cents are that we should not use the `_is_async_redis` approach. The sync...