[go-nuts] Re: Panic during proto Marshal

2020-06-19 Thread qiuming
Hi Mayank, did you find out why this was happening? I'm seeing the exact same backtrace. On Tuesday, June 18, 2019 at 11:02:09 PM UTC-7, Mayank Jha wrote: > > I am getting the *runtime error: invalid memory address or nil pointer > dereference, *with the following stack trace, but only occasiona

[go-nuts] Re: Panic during proto Marshal

2019-06-19 Thread Agniva De Sarker
This happens when you are trying to access a nil pointer. Check from where the stack trace originates, go to that line and add a "!= nil" check. I guess that is what's happening. P.S. Your stack trace is in a json format which is for machines to read, not humans. While reporting issues, it help