Skip to content

Commit

Permalink
try with unsafe deref
Browse files Browse the repository at this point in the history
  • Loading branch information
skudasov committed Dec 19, 2024
1 parent 8f95af4 commit 1fb6499
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions wasp/wasp.go
Original file line number Diff line number Diff line change
Expand Up @@ -632,9 +632,9 @@ func (g *Generator) pacedCall() {
if !g.Stats().RunStarted.Load() {
return
}
if g.rl.Load() == nil {
return
}
//if g.rl.Load() == nil {
// return
//}
(*g.rl.Load()).Take()
if g.stats.RunPaused.Load() {
return
Expand Down

0 comments on commit 1fb6499

Please sign in to comment.