Abdulla Abdurakhmanov

Results 84 comments of Abdulla Abdurakhmanov

> but is there a way to create a PUT-signed URL My understanding was that you can use the method described in the official docs for any HTTP methods since...

@TmLev I had an impression that it is there already, but I was wrong and apparently those functions weren't accessible outside. I've just added it to the master branch, a...

It doesn't support GKE Metadata environment yet (I think I need to update Metadata client). I'll check it a bit later.

Well, sometimes those JSON files have different formats and fields in it (e.g. when SA impersonation, etc). Sometimes you don't have JSON at all (working inside GCE/GKE/CloudRun etc), so you...

> And my question was mostly about whether I can somehow get that service account (and its email) from the GoogleRestApi and GoogleApi knowing that they were created from said...

Oh, I didn't notice this for some reason. Sorry, let me check this and come back to you.

Yes, that's limitation coming from underlying Tonic/Tokio (gRPC) implementation, so you are trying to work with different Tokio runtimes. There was a similar question in the past: https://github.com/abdolence/firestore-rs/issues/101 if you...

I think the root cause still the same. You noticed it with caching because cache.load() uses tokio::spawn() after probably which it detects different tokio runtimes. It is mostly guess depends...

I'll do some additional verification later around cache if there are anything that can be related from this crate, but I doubt it.

Are you running some kind of async tests in your application? Then it is well know behaviour from Tokio, where you can read details here: https://github.com/tokio-rs/tokio/issues/2374 Related to a persistence...