Skip to content

Commit 71c25d0

Browse files
committed
Remove obsolete comment
1 parent 95c3f83 commit 71c25d0

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/Commands/Deploy.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -279,10 +279,6 @@ private function uploadArtifacts(array $config, array $packageUrls): void
279279
round(((float) filesize($archivePath)) / 1024. / 1024., 1)
280280
));
281281

282-
// Note: Symfony suggests using `fopen()` to stream the content, but S3 does not
283-
// support streaming that way and throws a 501 Not Implemented exception.
284-
// Sending the entire file in one batch works fine, but this likely
285-
// creates a blocking operation for the CLI.
286282
$request = new Request($url, 'PUT', StreamedContent::fromFile($archivePath));
287283
$promises[] = async(fn() => $client->request($request));
288284
}

0 commit comments

Comments
 (0)