-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Open
Labels
Description
dellve: 0.12.1
go:1.7.4
os: macos sierra 10.12.3
background: when i debugging a websocket program, the goroutine who should pong the server's ping request in backgrond but it's pause automatically when breakpoint hit in other functionality, so the websocket connection will close after timeout. So i want that goroutine keep running.
example:
func main(){
go handleWS()
print("abc") //<- breakpoint set here
}
func handleWS(){
//handle websocket ping pong
.....
}
renannprado, wanseob, Delorus, ae6rt, hammypants and 7 more