Naohiro Yoshida

Results 75 comments of Naohiro Yoshida

Sorry for the late reply. > Does that sound Okay to you? LGTM. I have not yet decided on a name for the new create, but plan to run 1,...

@coryan @codyoss I have completed steps 1, 2 and 3. We have invited you to become an owner of crate on crates.io. Please check your notifications.

Now I sent the invitation for `google-cloud-longrunning`. Please confirm.

Have you tried the Debug output? You should get all the information on the Error structure. ```rust tracing::info!("{:?}", err); ``` ``` 2025-01-30T08:57:35.538564Z INFO google_cloud_storage::client::test: GoogleCloudStorage(Response(ErrorResponse { code: 403, errors: [ErrorResponseItem...

Currently, I have set up a filter in my environment with subscription and run it for a day, but I have not been able to confirm any cases where the...

Location can be specified when creating a dataset. https://github.com/yoshidan/google-cloud-rust/blob/497f2d200e2a3a1217dd1c3e9a6515efe77c762f/bigquery/src/http/dataset/mod.rs#L205 The dataset is globally unique. So the location does not need to be specified when searching. if the dataset cannot be...

Since the Spanner session itself becomes a simple struct, you can perform any operation using that string. However, the requested behavior goes beyond the scope of the library, so you'll...

Thank you for reporting. > Is there a specific reason Cancelled is treated as non-retryable? No. It is the same as Go. > Could there be side effects from making...

> When all connections are lost, .receive() never terminates, leaving the process stuck indefinitely with This needs to be corrected separately.

Thank you very much. > Regarding the 2nd fix needed, with .receive() that never quits gracefully I will consider implementing this myself, so you don't need to worry about it...