Skip to content

Commit 9a678db

Browse files
committed
chore: remove actional
1 parent e488bb0 commit 9a678db

File tree

4 files changed

+8
-385
lines changed

4 files changed

+8
-385
lines changed

package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
"@sentry/integrations": "7.16.0",
2626
"@sentry/node": "7.16.0",
2727
"@sentry/tracing": "7.16.0",
28-
"actional": "0.1.4",
2928
"ajv": "8.11.2",
3029
"axios": "0.27.2",
3130
"cat-loggr": "1.2.2",
@@ -37,8 +36,8 @@
3736
"moment": "2.29.4",
3837
"mustache": "4.2.0",
3938
"pg": "8.8.0",
40-
"tslib": "2.4.1",
41-
"sequelize": "6.25.8"
39+
"sequelize": "6.25.8",
40+
"tslib": "2.4.1"
4241
},
4342
"devDependencies": {
4443
"@types/axios": "0.14.0",

src/api.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import helmet from '@fastify/helmet';
22
import fastify, { FastifyInstance } from 'fastify';
33

44
import { cron as cacheCron } from './cache';
5-
import { connect as actionalConnect, disconnect as actionalDisconnect } from './db/actional';
65
import { cron as influxCron } from './db/influx';
76
import { connect as pgConnect, disconnect as pgDisconnect } from './db/postgres';
87
import { connect as redisConnect, disconnect as redisDisconnect } from './db/redis';
@@ -23,7 +22,6 @@ export async function start(): Promise<void> {
2322

2423
cacheCron.start();
2524
influxCron.start();
26-
actionalConnect();
2725
await Promise.all([loadLocales(), loadEvents(), pgConnect(), redisConnect(), server.register(helmet)]);
2826

2927
server.addHook('onRequest', async (req, reply) => {
@@ -79,7 +77,6 @@ export async function stop(): Promise<void> {
7977
await sentryClose();
8078
await pgDisconnect();
8179
redisDisconnect();
82-
actionalDisconnect();
8380
logger.info('All things disconnected.');
8481
process.exit(0);
8582
}

src/db/actional.ts

Lines changed: 0 additions & 34 deletions
This file was deleted.

0 commit comments

Comments
 (0)