Fixing a production issue
So we had a problem in our production environment. It showed up like this.
The first thing that I did was log into our production server, and look at the logs for errors. This is part of the new operational features that we have, and it was a great time to try it under real world conditions:
This gave me a subscription to the log, which gave me the exact error in question:
From there, I went to look at the exact line of code causing the problem:
Can you see the issue?
We create a dictionary that was case sensitive, and they used that to create a dictionary that was case insensitive. The actual fix was adding the ignore case comparer to the group by clause, and then pushing to production.

Comments
Comment preview