chore: eslint function-paren-newline

This commit is contained in:
Peter Jaszkowiak
2021-02-04 00:12:32 -07:00
committed by Julian Lam
parent dab3b23575
commit 62869bae3d
12 changed files with 49 additions and 32 deletions

View File

@@ -368,8 +368,8 @@ postgresModule.info = async function (db) {
const res = await db.query(`
SELECT true "postgres",
current_setting('server_version') "version",
EXTRACT(EPOCH FROM NOW() - pg_postmaster_start_time()) * 1000 "uptime"`
);
EXTRACT(EPOCH FROM NOW() - pg_postmaster_start_time()) * 1000 "uptime"
`);
return res.rows[0];
};