Skip to content
This repository has been archived by the owner on Oct 18, 2024. It is now read-only.

Commit

Permalink
fix: 🐛 upgrade prisma query engine version for lambda
Browse files Browse the repository at this point in the history
  • Loading branch information
ecxyzzy committed Dec 19, 2023
1 parent eb35bd9 commit 74998ee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/api/bronya.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ const prismaSchema = resolve(libsDbDirectory, "prisma", prismaSchemaFile);
/**
* Name of the Prisma query engine file that's used on AWS Lambda.
*/
const prismaQueryEngineFile = "libquery_engine-linux-arm64-openssl-1.0.x.so.node";
const prismaQueryEngineFile = "libquery_engine-linux-arm64-openssl-3.0.x.so.node";

/**
* Namespace for virtual files.
Expand Down
2 changes: 1 addition & 1 deletion libs/db/prisma/schema.prisma
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
generator client {
provider = "prisma-client-js"
binaryTargets = ["native", "debian-openssl-3.0.x", "linux-arm64-openssl-1.0.x"]
binaryTargets = ["native", "debian-openssl-3.0.x", "linux-arm64-openssl-3.0.x"]
}

datasource db {
Expand Down

0 comments on commit 74998ee

Please sign in to comment.