1. 26 Jul, 2016 1 commit
  2. 24 Jun, 2016 1 commit
  3. 15 Jun, 2016 1 commit
  4. 11 Jun, 2016 1 commit
  5. 09 Jun, 2016 1 commit
  6. 10 May, 2016 1 commit
  7. 04 May, 2016 2 commits
  8. 28 Apr, 2016 1 commit
  9. 27 Apr, 2016 2 commits
  10. 30 Mar, 2016 1 commit
  11. 09 Mar, 2016 1 commit
  12. 13 Feb, 2016 1 commit
  13. 03 Feb, 2016 1 commit
    • Thomas Gardner's avatar
      trivial: various superficial fixes · aaa6569f
      Thomas Gardner authored
      misc/completion/ipfs-completion.bash: add `ipfs stats` to BASH completion
      
      core/commands/mount_unix.go: ensure error is not nil before printing it
      
      contribute.md: fix bibliography indexing in example
      
      core/commands/swarm.go: change tabs to spaces in USAGE message
      
      *: 80-column readability improvements
      
      License: MIT
      Signed-off-by: default avatarThomas Gardner <tmg@fastmail.com>
      aaa6569f
  14. 30 Jan, 2016 3 commits
  15. 30 Dec, 2015 1 commit
  16. 28 Dec, 2015 1 commit
  17. 09 Nov, 2015 1 commit
  18. 05 Nov, 2015 1 commit
  19. 27 Oct, 2015 1 commit
  20. 03 Oct, 2015 1 commit
  21. 30 Sep, 2015 1 commit
  22. 25 Sep, 2015 1 commit
  23. 15 Sep, 2015 1 commit
  24. 27 Aug, 2015 2 commits
  25. 21 Jul, 2015 1 commit
  26. 20 Jul, 2015 1 commit
  27. 18 Jun, 2015 1 commit
    • rht's avatar
      Replace Critical{,f} with Error{,f} · 78b6cc5f
      rht authored
      Except when there is an explicit os.Exit(1) after the Critical line,
      then replace with Fatal{,f}.
      golang's log and logrus already call os.Exit(1) by default with Fatal.
      
      License: MIT
      Signed-off-by: default avatarrht <rhtbot@gmail.com>
      78b6cc5f
  28. 20 May, 2015 2 commits
  29. 28 Apr, 2015 1 commit
  30. 27 Apr, 2015 2 commits
  31. 26 Apr, 2015 1 commit
  32. 20 Apr, 2015 2 commits
    • Tor Arne Vestbø's avatar
      Remove daemon InitDone guard in interrupt handler · bfd12114
      Tor Arne Vestbø authored
      Instead of just terminating right there and then, we cancel the
      context, and let the daemon exit cleanly. This make take a few
      seconds, as the node builder and its child processes do not
      care too much about the context state while building nodes,
      but this can be improved by injecting checks for ctx.Done()
      before time-consuming steps.
      bfd12114
    • Tor Arne Vestbø's avatar
      Handle ipfs command interruption by cancelling the command context · cf6a268c
      Tor Arne Vestbø authored
      Instead of assuming the command is the daemon command and closing
      the node, which resulted in bugs like #1053, we cancel the context
      and let the context children detect the cancellation and gracefully
      clean up after themselves.
      
      The shutdown logging has been moved into the daemon command, where
      it makes more sense, so that commands like ping will not print out
      the same output on cancellation.
      cf6a268c