Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move eslint disabler to the correct line
Browse files Browse the repository at this point in the history
Signed-off-by: Tadeusz „tadzik” Sośnierz <[email protected]>
tadzik committed Mar 20, 2024
1 parent e8a54a6 commit bb0fdfb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/datastore/postgres/schema/v8.ts
Original file line number Diff line number Diff line change
@@ -49,8 +49,8 @@ export async function runSchema(connection: PoolClient) {
// (owing to a bug where we treated the counter as global across all networks), this assumes
// that both networks start from the same counter value.
const [statement, values] = domainSetToValues(serverConfigsRes.rows.map(d => d.domain), existingCounter);
// eslint-disable-next-line @typescript-eslint/no-explicit-any
await connection.query(
// eslint-disable-next-line @typescript-eslint/no-explicit-any
`INSERT INTO ipv6_counter (count, homeserver, server) VALUES ${statement}`, values as any[]
);
}

0 comments on commit bb0fdfb

Please sign in to comment.