Fix Editor crash in Mac

This commit is contained in:
amzn-sj
2021-06-04 12:34:50 -07:00
parent 29c71b4e53
commit 758f62a553
2 changed files with 52 additions and 0 deletions
@@ -0,0 +1,28 @@
{
"Amazon":
{
"AzCore":
{
"Streamer":
{
"Profiles":
{
"Generic":
{
"Stack":
[
{
"$type": "AZ::IO::StorageDriveConfig",
// The maximum number of file handles that the drive will cache.
// On Mac the default limit for the number of file handles an application
// can have open is set to 256. So we need to set this to a lower value than on PC.
// This limit is set by "launchctl limit maxfiles"
"MaxFileHandles": 65
}
]
}
}
}
}
}
}
@@ -0,0 +1,24 @@
{
"Amazon":
{
"AzCore":
{
"Streamer":
{
"Profiles":
{
"Generic":
{
"Stack":
[
{
"$type": "AZ::IO::StorageDriveConfig",
"MaxFileHandles": 65
}
]
}
}
}
}
}
}