Skip to content

Commit

Permalink
style: add , to pages/api/v1/status/index.js
Browse files Browse the repository at this point in the history
  • Loading branch information
felipemaion authored Oct 23, 2024
1 parent 3d9e8dc commit 904ae7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/api/v1/status/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ async function status(request, response) {
const databaseVersionResult = await database.query("SHOW server_version;");
const databaseVersionValue = databaseVersionResult.rows[0].server_version;
const databaseMaxConnectionsResult = await database.query(
"SHOW max_connections;"
"SHOW max_connections;",
);
const databaseMaxConnectionsValue =
databaseMaxConnectionsResult.rows[0].max_connections;
Expand Down

0 comments on commit 904ae7d

Please sign in to comment.