-
Notifications
You must be signed in to change notification settings - Fork 46
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PrestissimoFileFetcher errors with newest Curl Version 7.64.0 #102
Comments
I opened an issue at curl: curl/curl#3629 and it seems like that the implementation of
actually looking at the implementation of the multi fetcher of prestissimo itself: I think we should update the code of the implementation in drupal-scaffold to the same in prestissimo |
Same issue here. Would love to see the PR merged ;-) |
Same here
|
Except curl PHP was also patched php/php-src@5025eb0 |
Anyone know what is currently the best way to get around this issue? [EDIT] |
we're running into a strange issue with PrestissimoFileFetcher and the newest curl version:
basically it is able to download the first couple of files, but then fails to download additional files.
Actually debugging the curl process shows a very weird issue:
first working requests:
additional requests:
Interestingly prestissimo works correctly for regular composer installs:
the issues seem to only cause issues with the specific usage of
drupal-scaffold
andprestissimo
I also found https://stackoverflow.com/questions/54771917/could-not-resolve-host-error-with-curl-multi-on-curl-version-7-64 which talks about the same problem.
I'm not sure if this is really a problem within
drupal-scaffold
it just seems weird to me thatprestissimo
works by itself.some more info:
how to reproduce:
docker pull amazeeio/php:7.2-cli-drupal
docker run --rm --interactive --tty amazeeio/php:7.2-cli-drupal bash
composer create-project drupal-composer/drupal-project:8.x-dev some-dir --no-interaction --ignore-platform-reqs
The text was updated successfully, but these errors were encountered: