Skip to content

Commit

Permalink
make note of potential deadlock issues
Browse files Browse the repository at this point in the history
  • Loading branch information
mreiferson committed Mar 5, 2013
1 parent ad04c26 commit 61b6b5b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions quiet/quiet.go
Expand Up @@ -6,6 +6,11 @@ import (
)

func init() {
// TODO: if this is switched to ioutil.Discard a few of the tests hang.
// Presumably this means that there are legitimate deadlock issues
// somewhere in the core...
// OSX 10.8.2 go1.0.3
// (GOMAXPROCS > 1 also resolves the issue indicating the same)
dn, err := os.OpenFile(os.DevNull, 0, 0)
if err != nil {
panic(err)
Expand Down

0 comments on commit 61b6b5b

Please sign in to comment.