We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f73ccbe commit 15194b6Copy full SHA for 15194b6
CHANGELOG.md
@@ -1,5 +1,7 @@
1
## Unreleased
2
3
+- Fix wrong calculation for Content-MD5 in S3 deployer.
4
+
5
## 9.3.1 (2025-07-29)
6
7
- Fix "direct-deploy --no-detect" gave the message
src/S3/Deployer.php
@@ -164,7 +164,7 @@ public function uploadFilesIter( \Iterator $path_infos ): void {
164
WsLog::l( 'Failed to hash file ' . $filename );
165
continue;
166
} else {
167
- $file_hash = $path_info->getContentHash();
+ $file_hash = hex2bin( $path_info->getContentHash() );
168
$cmd_data['ContentMD5'] = base64_encode( $file_hash );
169
$cmd_data['ContentType'] = $content_type;
170
}
0 commit comments