You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Maybe this is a neon.tech issue, but the open method in the postgresql provision.rs, checks whether the error code is 3D000 (invalid catalog name) and then assumes the database does not exist. However neon.tech will throw an error XX000 (internal error), with the message database "my-wallet4" does not exist. This means the normal flow will fail.
Is there something we can do to still treat this as "NotFound"?
The text was updated successfully, but these errors were encountered:
So the best thing would be for neon.tech to throw the correct error code for this message and not change anything in Askar as I think that this is the correct way to deal with this issue.
Maybe this is a neon.tech issue, but the
open
method in the postgresql provision.rs, checks whether the error code is3D000
(invalid catalog name) and then assumes the database does not exist. However neon.tech will throw an errorXX000
(internal error), with the messagedatabase "my-wallet4" does not exist
. This means the normal flow will fail.Is there something we can do to still treat this as "NotFound"?
The text was updated successfully, but these errors were encountered: