Skip to content

Commit

Permalink
style: add missing , to /api/v1/status/index.js
Browse files Browse the repository at this point in the history
  • Loading branch information
kimtiago committed Aug 29, 2024
1 parent bbe62ca commit e6a6c45
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,4 @@
"path": "./node_modules/cz-conventional-changelog"
}
}
}
}
2 changes: 1 addition & 1 deletion pages/api/v1/status/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ async function status(request, response) {
const databaseVersionValue = databaseVersionResult.rows[0].server_version;

const databaseMaxConnectionResult = await database.query(
"SHOW max_connections"
"SHOW max_connections",
);
const databaseMaxConnectionValue =
databaseMaxConnectionResult.rows[0].max_connections;
Expand Down

0 comments on commit e6a6c45

Please sign in to comment.