Skip to content

Commit

Permalink
Suspend non-verified breakpoints
Browse files Browse the repository at this point in the history
  • Loading branch information
LittleChimera committed Jan 10, 2025
1 parent c4ab92e commit 907f022
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion service/dap/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -1509,7 +1509,7 @@ func (s *Session) setBreakpoints(prefix string, totalBps int, metadataFunc func(
err = setLogMessage(bp, want.logMessage)
if err == nil {
// Create new breakpoints.
got, err = s.debugger.CreateBreakpoint(bp, "", nil, false)
got, err = s.debugger.CreateBreakpoint(bp, "", nil, !breakpoints[i].Verified)
}
}
}
Expand Down

0 comments on commit 907f022

Please sign in to comment.