I wrote a program named "blobsUploader" that uploads a csv file to a blob container every night at 11pm.
Whenever a new csv file arrives to the blobs container, a new message in a queue named "blobsAdressQueue" appears with the address of the new blob (csv file).
This evokes the Web Job which reads the csv file and stores all it's data in Azure Table named "myDataTable".
The whole process worked great but suddenly from the past month or two, every night when a new csv is uploaded, there is an error with the Web Job process and the message from "blobsAddressQueue" moves to "blobsAddressQueue-poison" which means a message that has exceeded the maximum number of delivery attempts to the application.
I uploaded now a csv from June 2018, that worked for sure. However, now the message with the address the this blob is in "blobsAddressQueue-poison".
When I check the logs I can see 5 failing calls:

When I go into one of the attempts and open "Toggle Output", that is what I get:
Which is very weird because this file was read a in June 2018!!! with no any problems! I did not change anything in my code or the csv file since then.
If more information is needed in order to answer the problem, pls let me know.
CsvHelperan external reference, like a NuGet package? And if it is, have you updated this package? Because apparently something changed, otherwise you would be having this issue now. - rickvdbosch