1. 02 5月, 2019 3 次提交
    • Test Fix: Nil error handling · 5ce2deb5
      In TestExternalUnmount, the Mount function is called which returns an
      error which can be nil. The error type is then used in a comparison
      where Error() is called on it. If the error is nil, this results in a
      panic.
      
      Added a if err != nil {} guard to make sure that Error() is not called
      if the value is nil
       On branch go-test-fix
       Changes to be committed:
      	modified:   fuse/node/mount_test.go
      License: MIT
      Signed-off-by: 's avatarChris Buesser <christopher.buesser@gmail.com>
      Christopher Buesser 提交于
    • Test Fix: nil pointer error for core.NewNode · 93806601
      This commit fixes the errors resulting from passing a nil pointer to the
      core.NewNode function in TestExternalUnmmount and setupIpnsTest.
      
      In the previous nil's place a &core.BuildCfg{} is now passed.
      
      Both changes follow the same pattern:
      
      ```diff
      -  node, err = core.NewNode(context.Background(), nil)
      +  node, err = core.NewNode(context.Background(), &core.BuildCfg{})
      ```
      
       On branch go-test-fix
       Changes to be committed:
      	modified:   fuse/ipns/ipns_test.go
      	modified:   fuse/node/mount_test.go
      License: MIT
      Signed-off-by: 's avatarChris Buesser <christopher.buesser@gmail.com>
      Christopher Buesser 提交于
    • Merge pull request #6289 from ipfs/fix/auto-nat-service · af8edb06
      core: fix autonat construction
      Steven Allen 提交于
  2. 01 5月, 2019 8 次提交
  3. 30 4月, 2019 6 次提交
  4. 29 4月, 2019 6 次提交
  5. 28 4月, 2019 2 次提交
  6. 27 4月, 2019 3 次提交
  7. 26 4月, 2019 12 次提交