minio-dotnet
minio-dotnet copied to clipboard
MinIO Client SDK for .NET
## Issue We upgraded our own project to the net6.0 framework, and that included upgrading the minio-dotnet SDK to version 4.0.4 As a consequence of this update the Minio SDK...
When the listObjects is called the region was not being calculated ( because the objectName is null) . This caused a error on s3 to use the perminently redirected address...
When uploading a file that has more than 5MB, the tags specified in the WithTagging method are ignored. Here is an example implementation that causes this problem: ``` await _minioClient.PutObjectAsync(new...
In version 4.0.4 we had the `MinioClient(HttpClient httpClient)` constructor which unfortunately is now marked obsolete: * Having this function can easily use `services.AddHttpClient()` to inject HttpClient. * The parameterless constructor...
There is no problem with the upload and download interfaces, but the acquisition of the sts token fails,here is logs ``` 192.168.125.168:9000 [REQUEST sts.AssumeRole] [2022-08-12T02:54:35.967] [Client IP: 192.168.123.51] 192.168.125.168:9000 POST...
Adding 2 more bucket notification tests to cover the testing scenarios that cause the problems explained in issue #649.
It works _most_ of the time, but when we have many requests at the same time for the same resource, we sometimes end up with this (and other exceptions, that...
Just like in #643, we are seeing problems with the strong name signature in 4.0.4 when running in a .NET 4.8 Framework (ASP.NET WebSite/Application) OS: Windows 10 Enterprise 21H2 (19044.1741),...
I am using the following code: ` class Program { static async Task Main() { var bucket = "my-bucket-name"; var filePrefix = "379c05ee-d204-4dc7-b26b-66ad8f9e68d4/"; var _mediaClient = new MinioClient().WithEndpoint("s3.amazonaws.com").WithCredentials("myaccesskey", "mysecretkey").WithSSL().WithRegion("eu-west-2").Build(); var...
I randomly encounter this exception `Minio.Exceptions.ConnectionException: MinIO API responded with message=Connection error:One or more errors occurred. (The response ended prematurely.). Status code=0, response=One or more errors occurred. (The response ended...