System.IO.IOException: The configured user limit (128) on the number of inotify instances has been reached.

Discussion of open issues, suggestions and bugs regarding Entity Developer - ORM modeling and code generation tool
Post Reply
ChangHyeon Lee
Posts: 11
Joined: Wed 14 Jun 2017 05:46

System.IO.IOException: The configured user limit (128) on the number of inotify instances has been reached.

Post by ChangHyeon Lee » Thu 15 Feb 2018 03:32

Hi...

The following error occurred because of the code generated using Entity Developer.
"System.IO.IOException: The configured user limit (128) on the number of inotify instances has been reached."

Here's the problem code:
private static string GetConnectionString(string connectionStringName)
{
var configurationBuilder = new ConfigurationBuilder().AddJsonFile("appsettings.json", optional: true, reloadOnChange: true);
var configuration = configurationBuilder.Build();
return configuration.GetConnectionString(connectionStringName);
}

The above problem has been posted on StackOverflow.

https://stackoverflow.com/questions/458 ... mit-128-on

The reloadOnChange option should be changeable in ModelSettings.
Otherwise, the reloadOnChange option should default to false.

Regards

Shalex
Site Admin
Posts: 9543
Joined: Thu 14 Aug 2008 12:44

Re: System.IO.IOException: The configured user limit (128) on the number of inotify instances has been reached.

Post by Shalex » Fri 16 Feb 2018 15:18

Thank you for your report. We will notify you when a code generation is changed.

Shalex
Site Admin
Posts: 9543
Joined: Thu 14 Aug 2008 12:44

Re: System.IO.IOException: The configured user limit (128) on the number of inotify instances has been reached.

Post by Shalex » Fri 30 Mar 2018 17:23

The behavior is changed in the new v6.2.468.

Post Reply