-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
update to recent bazil.org/fuse #821
Conversation
this looks right to me. not sure about other places, yeah let's get @whyrusleeping's thoughts |
@@ -40,20 +41,20 @@ type benchDir struct { | |||
var _ = fs.Node(benchDir{}) | |||
var _ = fs.NodeStringLookuper(benchDir{}) | |||
var _ = fs.Handle(benchDir{}) | |||
var _ = fs.HandleReadDirer(benchDir{}) | |||
var _ = fs.HandleReadDirAller(benchDir{}) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this the correct change? Is the API the same?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
my bad, this isnt our code...
34ee7a4
to
eab991a
Compare
Rebased to flatten the tree and see the tests run once more. |
LGTM |
eab991a
to
d4299dc
Compare
this doesnt look good to me yet. Need to implement the correct interfaces. The tests are green because travis doesnt run fuse tests. |
Added the assignment to an interface that implements a interface collection to
|
Thanks @tv42 for the assignment to |
55e5120
to
6aa49fd
Compare
Just FYI: I ran a godoc with |
55d9196
to
4fee3ec
Compare
4fee3ec
to
94f55f2
Compare
Everything LGTM. merging after tests run. |
@whyrusleeping may want to review + comment. we can always fix things as another PR. |
It looks good to me, I dont see anything that would be bad |
The recent version of bazil.org/fuse dropped their custom interrupt (
fuse.Intr
) in favour ofgolang.org/x/net/context
.I found two spots in our code where we created a context and cancelled it when
Intr
was closed. I just passed through the context from fuse now.@whyrusleeping PTAL, maybe i've missed a case?
also:
fuse.Error
was dropped as well.