SQL server - Hash.Field column not large enough

Hi, I had issues with triggering recurring tasks. I managed to discover that the issue was that field Field in Hash table (SQL Server) was not large enough to store the Field value. My string was 102 chars, but this field is nvarchar(100).

I manually increased the column to 200.

I recently upgraded to latest version and got rid of all to-be-removed references. I can’t think of any other reason this started happening.

FYI.

Thanks.

OK, I found why I crossed the 100 chars limit in this field. I have used the class that was linked in one of the other threads here - DisableMultipleQueuedItemsFilter.

This class constructs the field name in a way that ended up for me with 102 chars.

Thanks.