Reputation: 21
While running go mod tidy
on my prod build, I am seeing the below error, intermittently.
go: downloading google.golang.org/grpc v1.56.3
go: downloading google.golang.org/protobuf v1.33.0
go: downloading google.golang.org/genproto/googleapis/rpc v0.0.0-20230530153820-e85fd2cbaebc
go: downloading golang.org/x/net v0.17.0
go: downloading github.com/golang/protobuf v1.5.3
SIGQUIT: quit
PC=0x40720e m=0 sigcode=0
goroutine 0 [idle]:
runtime/internal/syscall.Syscall6()
runtime/internal/syscall/asm_linux_amd64.s:36 +0xe fp=0x7ffc40eda0b0 sp=0x7ffc40eda0a8 pc=0x40720e
runtime/internal/syscall.EpollWait(0x435c45?, {0x7ffc40eda178?, 0x7ffc40eda180?, 0x7ffc40eda1d8?}, 0x458391?, 0x0?)
runtime/internal/syscall/syscall_linux.go:55 +0x45 fp=0x7ffc40eda100 sp=0x7ffc40eda0b0 pc=0x407185
runtime.netpoll(0xc00003a000?)
runtime/netpoll_epoll.go:118 +0xcb fp=0x7ffc40eda790 sp=0x7ffc40eda100 pc=0x435aab
runtime.findRunnable()
runtime/proc.go:3191 +0x825 fp=0x7ffc40eda8a0 sp=0x7ffc40eda790 pc=0x441945
runtime.schedule()
runtime/proc.go:3582 +0xb1 fp=0x7ffc40eda8d8 sp=0x7ffc40eda8a0 pc=0x442ab1
runtime.park_m(0xc000006d00?)
runtime/proc.go:3745 +0x11f fp=0x7ffc40eda920 sp=0x7ffc40eda8d8 pc=0x442fbf
traceback: unexpected SPWRITE function runtime.mcall
runtime.mcall()
runtime/asm_amd64.s:458 +0x4e fp=0x7ffc40eda938 sp=0x7ffc40eda920 pc=0x46ce0e
...
Does anyone has any idea or workaround to fix this ?
I tried running go mod tidy -v
but it also did not give any additional info, tried running go mod tidy in my local but it was passing.
Upvotes: 2
Views: 61