We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4a628b commit 5d4f3faCopy full SHA for 5d4f3fa
pkg/epoll/epoll.go
@@ -205,7 +205,7 @@ func (e *Epoll) listen() {
205
// TODO: Handle errors here
206
klog.V(4).Info("waiting for epoll events...")
207
count, _ := syscall.EpollWait(e.epfd, events, timeout)
208
- klog..V(4).Infof("received %d events from epoll. dispatching...", count)
+ klog.V(4).Infof("received %d events from epoll. dispatching...", count)
209
for i := 0; e.active && i < count; i++ {
210
e.dispatchEvent(&events[i])
211
}
0 commit comments