Skip to content

Commit

Permalink
Fix Notify() deadlock on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
vitalif committed Aug 10, 2023
1 parent ce36822 commit 269fa14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/goofys_windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ func NewGoofysWin(fs *Goofys) *GoofysWin {
}
fsint.initCh = make(chan int, 3)
fs.NotifyCallback = func(notifications []interface{}) {
fsint.Notify(notifications)
go fsint.Notify(notifications)
}
return fsint
}
Expand Down

0 comments on commit 269fa14

Please sign in to comment.