1. 22 May, 2015 1 commit
  2. 20 May, 2015 1 commit
  3. 20 Apr, 2015 2 commits
    • Juan Batiz-Benet's avatar
      repo: move daemon.lock -> repo.lock · dd25a752
      Juan Batiz-Benet authored
      The "daemon.lock" was really a repo.lock, as the cli also took it
      and the purpose was any process mutex. This is part of the 1-to-2
      migration, and has already been handled in
      https://github.com/ipfs/fs-repo-migrations/tree/master/ipfs-1-to-2
      dd25a752
    • Juan Batiz-Benet's avatar
      remove debugerrors · 140cd1fd
      Juan Batiz-Benet authored
      We now consider debugerrors harmful: we've run into cases where
      debugerror.Wrap() hid valuable error information (err == io.EOF?).
      I've removed them from the main code, but left them in some tests.
      Go errors are lacking, but unfortunately, this isn't the solution.
      
      It is possible that debugerros.New or debugerrors.Errorf should
      remain still (i.e. only remove debugerrors.Wrap) but we don't use
      these errors often enough to keep.
      140cd1fd
  4. 31 Mar, 2015 1 commit
  5. 14 Jan, 2015 1 commit
  6. 18 Nov, 2014 3 commits
  7. 17 Nov, 2014 1 commit
  8. 14 Nov, 2014 4 commits
  9. 30 Oct, 2014 1 commit
  10. 25 Oct, 2014 1 commit
    • Juan Batiz-Benet's avatar
      go-vet friendly codebase · 184c2543
      Juan Batiz-Benet authored
      - distinguish log.Error and log.Errorf functions
      - Initialize structs with field names
      - A bit of unreachable code (defers)
      184c2543
  11. 22 Oct, 2014 3 commits
  12. 15 Oct, 2014 2 commits
  13. 13 Oct, 2014 1 commit
  14. 11 Oct, 2014 2 commits
  15. 10 Oct, 2014 2 commits
  16. 09 Oct, 2014 1 commit
    • Juan Batiz-Benet's avatar
      u.DOut -> log.Debug · 972c0f7b
      Juan Batiz-Benet authored
      and other logging switches. I kept the u.PErr and u.POut in cli
      commands, as those do need to write raw output directly.
      972c0f7b
  17. 06 Oct, 2014 1 commit
  18. 04 Oct, 2014 2 commits
  19. 02 Oct, 2014 3 commits
  20. 01 Oct, 2014 2 commits
  21. 30 Sep, 2014 4 commits
  22. 22 Sep, 2014 1 commit
    • Juan Batiz-Benet's avatar
      adjusted what Address means in config · 16533041
      Juan Batiz-Benet authored
      There are (so far) two sorts of addresses that peers care about:
      
      - peer network addresses, local to listen, saved to bootstrap.
        `config.Identity.Address`
      
      - peer RPC network address, local RPC tcp endpoint
        `config.RPCAddress`
      
      @whyrusleeping @perfmode
      16533041