Aaron Piotrowski
Aaron Piotrowski
Ping @DaveRandom: Any idea why `CreateProcess` would be failing here?
@itajackass Can you please try replacing `vendor/amphp/windows-registry/lib/WindowsRegistry.php` with [this file](https://gist.github.com/trowski/21ecc4e856225f752e8c30ce2a00661f). That version does a blocking read of the registry if creating the async process fails. I'm just curious to see...
Ping @bwoebi, possibly a bug here?
@dickson-michael Did you ever find a solution to this or did you move on to another approach? I tried testing this myself but wasn't having luck even getting SSL to...
@bileslaw I pushed a commit, https://github.com/amphp/http-server/commit/d61d8e64ad09fea3bc2856645ac197bf835faf8f, that adds an option to disable HTTP/2 in `DefaultHttpDriverFactory`. I can reproduce the issue locally, though didn't yet investigate what's happening. If you manage...
Are you using the latest beta of `http-client`? I thought I squashed that in https://github.com/amphp/http-client/commit/9cae0bfc2b7af11d9cfea61c56fe2e83f8c5ceff. The `mprotect` failure is suspect though – perhaps you have too many fibers at once?...
Sorry, I had looked at the date for the latest beta of this library, not `http-client`. 😊 For now please try `v5.x-dev` in composer for `http-client`. You'll need that for...
After giving this some thought, the correct place for a solution may in fact be in `amphp/parallel` (where you first opened the issue https://github.com/amphp/parallel/issues/39). We already use an environment variable...
Feel free to submit a PR, otherwise I'll put this onto my (very long) to-do list.
[amphp/process](https://github.com/amphp/process) supports non-blocking I/O on process pipes on Windows. Amp also has the [amphp/parallel](https://github.com/amphp/parallel) package that may make IPC even easier. @gabrielrcouto I'd be curious to know your thoughts of...