Alex Petul
Alex Petul
I have investigated the issue, and it appears, that this behavior is caused by `buildAndSelectGuestIPs` function. https://github.com/hashicorp/terraform-provider-vsphere/blob/97f3d80ffc6b7e51c85a0aff76837f5d80112971/vsphere/virtual_machine_guest_structure.go#L72-L95 Is this an expected behavior? I've successfully reached my goal just replacing `deviceConfigId`...
More detailed steps to reproduce: 1. Deploy in vSphere any linux machine (i've used Ubuntu 22 Server) 2. Install docker compose on it 3. Create docker-compose.yml and bring the services...
This line `chord(header, callback).async()` is almost correct, however, chord does not define such method as `async()`. Use `delay()` or `apply_async()` instead. For example, that's how i used chord in combination...
See the same behavior with python==3.12.9 and redis==5.2.0. I ended up subclassing ```redis.Redis``` and overriding ```__del__``` method. Might be not the best solution, but it works: ```python import json from...