Bill Fraser

Results 38 comments of Bill Fraser
trafficstars

Interesting, I didn't know that about the generation numbers! It's unfortunate that `InodeTable`'s current behavior is quite poor, given this constraint -- it wants to reuse inode numbers whenever possible...

(for reference to myself and others, the place in the documentation that actually says this is: https://github.com/libfuse/libfuse/blob/d92bf83c152ff88c2d92bd852752d4c326004400/include/fuse_lowlevel.h#L69-L81)

Good points both. Yeah, the documentation should clarify this, and/or the mount function should make it more obvious.

I'm not sure I like this idea. It basically entails having fuse-mt hold on to the object instead of the filesystem, and for the (presumably) common case where it's just...

I've been playing with an async prototype of this crate for a long time now, and yes, while the async ecosystem has progressed greatly in the past few years (my...

Can you share what is the `Oauth2Type` you're using? It's the second parameter to `Authorization::from_auth_code()`. Redact any secrets of course.

Thanks. I'm able to reproduce the problem. Apparently refresh tokens obtained using a client secret are different from ones obtained using the PKCE flow, and we need to pass the...

@pvichivanives do you think you could test this fix and let me know if it works for you? https://github.com/dropbox/dropbox-sdk-rust/pull/152

If you're using save/load, you really should be using PKCE anyway. The alternative would require saving the secret in there too, which is not a great idea since in the...

Yeah, as you mention, it'd be a breaking change. It'd also break the CLI helper `get_auth_from_env_or_prompt()` which assumes there are just two env variables, one with client ID and one...