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
So... the code that sends the message creates a database instance to the remote database and then sends it, but doesn't close. It's not possible (at the moment anyway) to get that database connection and close it. So I'll need to do a protocol update to fix this
The text was updated successfully, but these errors were encountered:
Using the develop branch on 22-Nov-23, this doesn't seem to be fixed.
It does work correctly if I just open and close a context, but in this case it doesn't work:
this.veridaContext = await client.openContext("DID Message Sender", true) as Context;
const messaging = await this.veridaContext.getMessaging(); // works without this
await this.veridaContext.close();
However, there remains an outstanding issue where a single database connection doesn't get closed when closing the context so applications may hang at the end.
This has been logged as a separate issue (#375) so this issue can be closed.
From @tahpot in Discord:
The text was updated successfully, but these errors were encountered: