Tadas Šubonis
Tadas Šubonis
It seems that this happens because the exceptions are not handled before they are let go to the ThreadPoolExecutor where they are swallowed.
The problem is that the old JSON has the old attribute. I load the JSON to the dict and then I use the dict with cattrs to create the attr...
@hynek It would feel more like attrs as I am trying to make the old and the new interfaces of the class compatible. Something like an 'alias' for attr.ib would...
Think about this use case - you update a Python lib that you develop and that uses the attrs. You update it by changing some attribute name. This would break...
Thanks. This was what I was looking for: ``` regsvr32 /u "C:\Program Files\obs-studio\bin\64bit\obs-virtualsource.dll" ```
Thanks. Maybe there would be a way to put a file like the one mentioned here: https://success.docker.com/article/how-do-i-configure-the-default-bridge-docker0-network-for-docker-engine-to-a-different-subnet before docker starts? Or maybe this functionality could be built in as a...
I want to restart Docker so it would pickup the changes from /etc/docker/daemon.json file that I've uploaded through a custom script.
That sounds good - I'll try. If that doesn't work, I guess ``` systemctl restart docker ``` will do the job.
For those that are interested, I got it to work with a plugin like this: ``` plugins: - name: docker-bip script: custom-scripts/create-docker-config.sh target: host target_role: all-nodes ``` and its content:...