Hello. We experience the same issue using the same Kentico Version as Mauri (v13.0.163)
We created the custom module for S3 which contains the following code inside
protected override void OnInit()
{
base.OnInit();
StorageProvider filesMediaProvider = StorageProvider.CreateAmazonStorageProvider();
filesMediaProvider.CustomRootPath = Environment.GetEnvironmentVariable("MediaLibraryBucket");
filesMediaProvider.PublicExternalFolderObject = false;
StorageHelper.MapStoragePath("~/App_Data/Files", filesMediaProvider);
}
The above code is the same on both Live and CMS.
I disabled the synchronization like aforementioned(Files,Attachments,Media files, Metafiles), but the error is still there
The error I get:
Connection ID "159247282839", Request ID "80000710-4325-dd00-b63f-84710c7967bb": An unhandled exception was thrown by the application. Message: The process cannot access the file 'C:\inetpub\wwwroot\site-site\App_Data\AmazonTemp__metadata\app_data\files\images\test.png.meta' because it is being used by another process.
We did a load test and from 200 requests it happened 4 times
Mauri Mitchell did you manage to fix the issue?