Revert "fix presigned urls"

This reverts commit f3748abf31.
This commit is contained in:
Evan Jarrett
2025-10-11 09:23:47 -05:00
parent f5e6e6954f
commit 6cfb14df2b
+4 -1
View File
@@ -114,7 +114,10 @@ func (s *HoldService) initS3Client() error {
}
// Extract S3 configuration from storage parameters
params := s.config.Storage.Parameters()
params, ok := s.config.Storage.Parameters()["s3"].(configuration.Parameters)
if !ok {
return fmt.Errorf("failed to get S3 parameters from storage config")
}
// Extract required S3 configuration
region, _ := params["region"].(string)