aarzilli / gdlv

GUI frontend for Delve
Other
1.33k stars 48 forks source link

Gdlv only lists a subset of the goroutines #49

Closed jbeshay closed 4 years ago

jbeshay commented 4 years ago

I am trying to use gdlv to debug a core dump with almost 1k goroutines. When I do that in dlv, I get a list of all goroutines:

[947 goroutines]
(dlv)

However, gdlv UI only shows a hundred or so. Even if I try to increase the limit in the goroutines window, the list doesn't grow. Am I missing something here?

aarzilli commented 4 years ago

Changes to the configuration only applied after a continue operation (continue, next, step, etc). Fixed it. Thank you.

jbeshay commented 4 years ago

Thanks @aarzilli!