Rank 1: Thread
SSLV3_ALERT_BAD_RECORD_MAC(tls_record.cc:583) error 268436476, uri=https://cloud.appwrite.io/v1/storage/buckets/67bxxxxxxxxxxxxd026/files (0)
as well as this error
ClientException: Connection reset by peer, uri=https://cloud.appwrite.io/v1/storage/buckets/67b10xxxxxxxxxxxx026/files (0)
yes my internet is stable and im able to perform reads and write to the Database.
I'm only facing this issue with storage i have checked if its the permissions by setting it to any
this is the code i have used to create a new file on storage
bucketId: bucketId, fileId: fileId, file: InputFile.fromPath(path: image), permissions: [ Permission.read(Role.any()), // Anyone can read Permission.write( Role.user(userId)), // Only the user can edit/delete ]); return result; ```