Occasionally I receive fopen(...s3.us-west-1.amazonaws.com/...): failed to open stream: Operation now in progress
when trying to download files from some third-party S3 bucket.
if (! $this->storeStream($path, fopen($url, 'r'))) {
throw new DownloadException(
"Unable to download [$url] to [{$path}]"
);
}
Is there a problem with my use of fopen()
or does this error originate from S3?