Results 7 comments of Evan Smith

> ```python > import multiprocessing > > def main(qs): > with Connection(connection=redis): > if need_burst_workers(): > for i in range(num_burst_workers_needed()): > multiprocessing.Process(target=Worker(qs).work, kwargs={'burst': True}).start() > else: > time.sleep(10) #in seconds...

In case it helps someone else down the road, here's how I've been able to programmatically create more workers with `multiprocessing` in Python 3.10. ```python import multiprocessing def start_worker(queues): from...

Hopefully PR #135 receives some attention, since it would close this issue.

> I did some extensive debugging and found out that this error is caused if an access point in the list is present which supports `WPA3` security profile. My iOS15...

@charliesneath It seems like are right about `nohup` causing the shell to hang when executed via SSH ([source](https://stackoverflow.com/a/29172/11853309)). However, redirecting stdout, stderr, and stdin worked for me. Here's the command...

> I couldn't get `-gpu mps,cpu` to work -- I thought I'd try that out of curiosity, too, but that reports that `AssertionError: The number of -multidevice_strategy layer indices minus...

> s3 does not support directories, except the top-level buckets, which are fairly similar in their behaviour. If you expect s3.makedirs('my-bucket-name/testdir') to enable you to write files with paths that...