Skip to content

Commit

Permalink
fix log hanging issue, and implement close-notify for commands
Browse files Browse the repository at this point in the history
License: MIT
Signed-off-by: Jeromy <jeromyj@gmail.com>
  • Loading branch information
whyrusleeping committed Nov 3, 2015
1 parent 8ea9225 commit ce81fb4
Show file tree
Hide file tree
Showing 109 changed files with 508 additions and 861 deletions.
4 changes: 0 additions & 4 deletions Godeps/Godeps.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion Godeps/_workspace/src/github.com/ipfs/go-log/.gxlastpubver

This file was deleted.

38 changes: 0 additions & 38 deletions Godeps/_workspace/src/github.com/ipfs/go-log/context.go

This file was deleted.

44 changes: 0 additions & 44 deletions Godeps/_workspace/src/github.com/ipfs/go-log/context_test.go

This file was deleted.

16 changes: 0 additions & 16 deletions Godeps/_workspace/src/github.com/ipfs/go-log/example_test.go

This file was deleted.

104 changes: 0 additions & 104 deletions Godeps/_workspace/src/github.com/ipfs/go-log/oldlog.go

This file was deleted.

62 changes: 0 additions & 62 deletions Godeps/_workspace/src/github.com/ipfs/go-log/option.go

This file was deleted.

5 changes: 0 additions & 5 deletions Godeps/_workspace/src/github.com/ipfs/go-log/package.json

This file was deleted.

50 changes: 0 additions & 50 deletions Godeps/_workspace/src/github.com/ipfs/go-log/writer.go

This file was deleted.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion blocks/blockstore/blockstore.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
context "github.com/ipfs/go-ipfs/Godeps/_workspace/src/golang.org/x/net/context"
blocks "github.com/ipfs/go-ipfs/blocks"
key "github.com/ipfs/go-ipfs/blocks/key"
logging "github.com/ipfs/go-ipfs/vendor/QmZUcdoz4Afhc5vr3LEoPHxr1wwZfjBxxjWx2oMmfChG9W/go-log"
logging "github.com/ipfs/go-ipfs/vendor/QmXQEqXS3TDyhAFGBFeMadaBYJ2ismXXyQSn5i7HubcQUH/go-log"
)

var log = logging.Logger("blockstore")
Expand Down
2 changes: 1 addition & 1 deletion blocks/set/set.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ package set
import (
"github.com/ipfs/go-ipfs/blocks/bloom"
key "github.com/ipfs/go-ipfs/blocks/key"
logging "github.com/ipfs/go-ipfs/vendor/QmZUcdoz4Afhc5vr3LEoPHxr1wwZfjBxxjWx2oMmfChG9W/go-log"
logging "github.com/ipfs/go-ipfs/vendor/QmXQEqXS3TDyhAFGBFeMadaBYJ2ismXXyQSn5i7HubcQUH/go-log"
)

var log = logging.Logger("blockset")
Expand Down
2 changes: 1 addition & 1 deletion blockservice/blockservice.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"github.com/ipfs/go-ipfs/blocks/blockstore"
key "github.com/ipfs/go-ipfs/blocks/key"
exchange "github.com/ipfs/go-ipfs/exchange"
logging "github.com/ipfs/go-ipfs/vendor/QmZUcdoz4Afhc5vr3LEoPHxr1wwZfjBxxjWx2oMmfChG9W/go-log"
logging "github.com/ipfs/go-ipfs/vendor/QmXQEqXS3TDyhAFGBFeMadaBYJ2ismXXyQSn5i7HubcQUH/go-log"
)

var log = logging.Logger("blockservice")
Expand Down
2 changes: 1 addition & 1 deletion cmd/ipfs/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import (
config "github.com/ipfs/go-ipfs/repo/config"
fsrepo "github.com/ipfs/go-ipfs/repo/fsrepo"
u "github.com/ipfs/go-ipfs/util"
logging "github.com/ipfs/go-ipfs/vendor/QmZUcdoz4Afhc5vr3LEoPHxr1wwZfjBxxjWx2oMmfChG9W/go-log"
logging "github.com/ipfs/go-ipfs/vendor/QmXQEqXS3TDyhAFGBFeMadaBYJ2ismXXyQSn5i7HubcQUH/go-log"
)

// log is the command logger
Expand Down
2 changes: 1 addition & 1 deletion cmd/seccat/seccat.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (
ci "github.com/ipfs/go-ipfs/p2p/crypto"
secio "github.com/ipfs/go-ipfs/p2p/crypto/secio"
peer "github.com/ipfs/go-ipfs/p2p/peer"
logging "github.com/ipfs/go-ipfs/vendor/QmZUcdoz4Afhc5vr3LEoPHxr1wwZfjBxxjWx2oMmfChG9W/go-log"
logging "github.com/ipfs/go-ipfs/vendor/QmXQEqXS3TDyhAFGBFeMadaBYJ2ismXXyQSn5i7HubcQUH/go-log"
)

var verbose = false
Expand Down
Loading

0 comments on commit ce81fb4

Please sign in to comment.