Closed xuxiaofan1203 closed 1 month ago
@xuxiaofan1203 please note what is wrote to readme:
Warning libnetwork was moved to https://github.com/moby/moby/tree/master/libnetwork
So double check if same issue still exists latest code int there and report it there if it does. Also note that I'm not Moby maintainer but they are looking for that there in there.
@xuxiaofan1203 please note what is wrote to readme:
Warning libnetwork was moved to https://github.com/moby/moby/tree/master/libnetwork
So double check if same issue still exists latest code int there and report it there if it does. Also note that I'm not Moby maintainer but they are looking for that there in there.
Thank you for your reply and help, I will check again there. And I'm sorry to bother you.
As already noted by @olljanat, this repo is now defunct and not actively watched by maintainers. Also, it seems this goroutine leak only exists in an isolated test due to how it's written. So let me close this issue.
Hello @olljanat, the libnetwork is useful, but I found a bug when I used it, I think we can fix it. In the test file https://github.com/moby/libnetwork/blob/3797618f9a38372e8107d8c06f6ae199e1133ae8/drivers/overlay/overlay_test.go#L134-L144 After the Init has executed and the ctx and cancel are created at https://github.com/moby/libnetwork/blob/3797618f9a38372e8107d8c06f6ae199e1133ae8/drivers/overlay/overlay.go#L75-L77 There is no cancelFunc to awaken the ctx.Done() at https://github.com/moby/libnetwork/blob/3797618f9a38372e8107d8c06f6ae199e1133ae8/drivers/overlay/peerdb.go#L280 So the goroutine will block, and you can use the goleak to reproduce the bug like this
And I think we can fix the bug by calling the cleanupDriver() after the init() gets executed.