Skip to content

Commit

Permalink
Disable limit concurrency drizzle
Browse files Browse the repository at this point in the history
  • Loading branch information
yunusefendi52 committed Aug 17, 2024
1 parent 9133f5a commit 492eeb4
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 1 deletion.
Binary file modified bun.lockb
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"@aws-sdk/client-s3": "^3.556.0",
"@aws-sdk/s3-request-presigner": "^3.556.0",
"@hebilicious/vue-query-nuxt": "^0.3.0",
"@libsql/client": "^0.6.2",
"@libsql/client": "^0.8.1",
"@plist/parse": "^1.1.0",
"@primevue/nuxt-module": "^4.0.2",
"@primevue/themes": "^4.0.2",
Expand Down
1 change: 1 addition & 0 deletions server/db/db.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@ import * as schema from '../db/schema'
const db = (env: any, migrationMode: boolean = false) => drizzle(createClient({
url: env.DB_URL ?? env.NUXT_DB_URL,
authToken: env.DB_AUTH_TOKEN ?? env.NUXT_DB_AUTH_TOKEN,
concurrency: 0,
}), { schema, logger: migrationMode ? false : env?.enableLogging ?? env?.NUXT_APP_ENABLE_DRIZZLE_LOGGING ?? true });
export default db

0 comments on commit 492eeb4

Please sign in to comment.