You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following code results in a java.net.SocketException: Socket closed exception when processing the envelope:
.UseSentry(options =>{// All the standard optionsconstintmb=1024*1024;options.MaxAttachmentSize=80*mb;options.SetBeforeSend((e,h)=>{varrandom=newRandom();varbyteArray=newbyte[20*mb];random.NextBytes(byteArray);h.AddAttachment(byteArray,$"twentymb.bin");returne;});}
Additionally, the envelope getting stuck in the __processing directory and preventing other envelopes from being sent. I think that is a problem in the .NET SDK and possibly a regression of:
The following code results in a
java.net.SocketException: Socket closed
exception when processing the envelope:Additionally, the envelope getting stuck in the
__processing
directory and preventing other envelopes from being sent. I think that is a problem in the .NET SDK and possibly a regression of:__processing
until restart #3384Originally posted by @jamescrosswell in #3792
The text was updated successfully, but these errors were encountered: