Open
Description
After about 10 mins of inactivity my code is always trying to execute the following code and throws the error
public Task CleanupDefunctSiloEntries(DateTimeOffset beforeDate)
{
throw new NotImplementedException();
}
in SystemTargetBasedMembershipTable.cs
What is the reason of this?
My startup code
builder.Host.UseOrleans(silo =>
{
silo
.UseLocalhostClustering()
.ConfigureLogging(options => options.SetMinimumLevel(LogLevel.Information))
.AddIncomingGrainCallFilter<LoggingInterceptor>()
.AddAdoNetGrainStorage(StateStorageConstants.StorageName, options =>
{
options.Invariant = "Npgsql";
options.ConnectionString = builder.Configuration.GetConnectionString("postgres");
});
});