mehrdadn

Results 24 comments of mehrdadn

Thanks! I think that's not the cause here, though it does show the same error in that case. This happens to too many ports for me for them all to...

So I got a chance to look into this, and it seems there are indeed 2 issues. One is in `anetListen`: if (bind(s,sa,len) == -1) { anetSetError(err, "bind: %s", IF_WIN32(wsa_strerror(errno),...

Interesting. It turns out this is due to Hyper-V. [Uninstalling the feature removes the port reservations.](https://stackoverflow.com/a/54727281)

What does `python3 -c "import sys; print(sys.version)"` show on each platform?

Hmm, interesting. I'm not getting an error, but in my case (64-bit Windows vs. Arch WSL) they don't recognize each others' logins, and so ask me to log in again,...

Yeah, it seems to repro like this: > wsl python3 -c "import dbm; dbm.open('Temp.dbm', 'c')[b'1'] = b'2'" > python3 -c "import dbm; dbm.open('Temp.dbm', 'c')[b'1'] = b'2'" Traceback (most recent call...

@derickboss1 I don't know of a simple fix to this (though perhaps one of the main maintainers might). I would recommend you try to stay on a single platform for...

Is automatic deployment to PyPI advisable generally? I'm not familiar with what common practice is, but it seems like a potential security concern, as well as leading too easily to...

Right, I did take a quick glance actually... I should have probably mentioned this, but I've found TGitCache is just unforgivably slow, so I've given up on it entirely. Even...

Options: 1. `setrlimit(RLIMIT_NOFILE)` 2. Use e.g. sockets + ports instead of pipes and connect them dynamically. Though I don't think you should have that many workers on a single machine...