msdos
msdos
I don't know if simply by adding `qemu` and `platforms` sections will do the magic, but I've seen some people using qemu for similar cases: https://github.com/mrgasparov/nicotine-novnc/blob/a37ecce9a272f50a4a9ae454eaf832bfd35bcb37/.github/workflows/docker-build.yml#L23 I'm using this image...
``` export dl_url="https://web-builds.airdcpp.net/stable/airdcpp_latest_master_armhf_portable.tar.gz" docker build -t airdcpp-webclient-armv8-dl_url --no-cache --pull -t gangefors/airdcpp-webclient:2.7.0 --build-arg dl_url . [23:16:58] [+] Building 106.2s (11/11) FINISHED docker:default => [internal] load build definition from Dockerfile 0.0s =>...
In `/usr/local/bin/sqlcrush` (that's where `pip3` installed this application), change the lines: https://github.com/coffeeandscripts/sqlcrush/blob/master/bin/sqlcrush#L927,L929 ``` except: term_scr(scr) print("CRITICAL FAILURE...") ``` to ``` except Exception as e: term_scr(scr) print(str(e)) print("CRITICAL FAILURE...") ``` I...
You don't need to apologize, this application already helped me to solve a problem in production and I thank you for that. I just gave a specific suggestion for this...
I'm having the same problem in a raspberrypi machine: ``` Exception in thread Thread-62324: Traceback (most recent call last): File "/usr/lib/python3.7/threading.py", line 917, in _bootstrap_inner self.run() File "/home/pi/.local/venvs/xdcc-dl/lib/python3.7/site-packages/sentry_sdk/integrations/threading.py", line 69,...
@splifter You can try an **ugly** workaround to always re-run the download automatically when the exception happens (to me this problem doesn't happen every 30s, it's random, so in my...