add user info, add table drop for dev env, fix invite route
All checks were successful
Code quality checks / biome (push) Successful in 8s

This commit is contained in:
creations 2025-05-04 08:59:36 -04:00
parent 320e2cc121
commit 0cb7ebb245
Signed by: creations
GPG key ID: 8F553AA4320FC711
11 changed files with 209 additions and 21 deletions

View file

@ -64,14 +64,14 @@ async function setup(): Promise<void> {
}
setup()
.catch((error: Error) => {
.catch((error) => {
logger.error(error);
process.exit(1);
})
.finally(() => {
cassandra.shutdown().catch((error: Error) => {
logger.error(["Error shutting down Cassandra client:", error]);
});
process.exit(0);
.finally(async () => {
try {
await cassandra.shutdown();
} catch (error) {
logger.error(["Error shutting down Cassandra client:", error as Error]);
}
});