-
Notifications
You must be signed in to change notification settings - Fork 604
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
Unhandled promise rejections in Secrets Manager #4747
Comments
If my understanding of your issue is correct, there is no problem. It seems related to the following rejection conditions. As I understand it, the SecretManagerClient flow can be briefly described as follows. SecretManagerClient -> initialize()-> listSecrets() -> close() -> if (stub && !this._terminated) -> this._terminated = true -> async retry -> initialize() -> if (this._terminated) -> reject |
Hi @ssundarraj, would you mind posting the behavior you're getting vs. expected behavior? I also think understanding your use case a bit better would help. Thanks! |
Thanks for the response @k-oguma and @sofisl In
I'm expecting this:
Here's why I think the client should
However, something could change between my call to |
hey @sofisl any timeline for this? |
I'll take a look next week! |
This has been closed since a request for information has not been answered for 15 days. It can be reopened when the requested information is provided. |
Sorry this was closed incorrectly. |
This has been closed since a request for information has not been answered for 15 days. It can be reopened when the requested information is provided. |
Thanks for stopping by to let us know something could be better!
PLEASE READ: If you have a support contract with Google, please create an issue in the support console instead of filing on GitHub. This will ensure a timely response.
Please run down the following list and make sure you've tried the usual "quick fixes":
If you are still having issues, please be sure to include as much information as possible:
Environment details
google-cloud-secretmanager
v18.17.0
9.6.7
^5.0.1
Steps to reproduce
Please include any and all code and/or steps related to reproducing the bug.
listSecrets
in atry..catch
initialize
is called under the hood (here) but notawait
ed which leads to an unhandled promise rejectionMaking sure to follow these steps will guarantee the quickest resolution possible.
Thanks!
Note: I'm happy to put up a fix for this. Seems like the code is generated. Where is the template from which it is generated?
The text was updated successfully, but these errors were encountered: