Re: [go-nuts] goroutine/channel errors?

2016-11-30 Thread Mandolyte
Perfect! thanks for the quick reply. On Wednesday, November 30, 2016 at 7:32:09 AM UTC-5, Jan Mercl wrote: > > On Wed, Nov 30, 2016 at 1:21 PM Mandolyte > wrote: > > > tr.sema <- struct{}{} > > > What is this telling me? > > The particular channel send operation was

Re: [go-nuts] goroutine/channel errors?

2016-11-30 Thread Jan Mercl
On Wed, Nov 30, 2016 at 1:21 PM Mandolyte wrote: > tr.sema <- struct{}{} > What is this telling me? The particular channel send operation was blocked for 595 minutes before the stack trace was produced. It shows nothing is receiving from that channel which might indicate a

[go-nuts] goroutine/channel errors?

2016-11-30 Thread Mandolyte
This morning a job that I had started last night was spitting out messages like this: goroutine 23866180 [chan send, 595 minutes] followed a stack trace, the first line number of which was pointing to this line of code: tr.sema <- struct{}{} What is this telling me? -- You received