@prisma/client-engine-runtime 6.16.0-integration-push-prynymnkvlrn.3 → 6.16.0-integration-feat-prisma-client-default-runtime.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +2 -1
- package/dist/index.mjs +2 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -1950,7 +1950,8 @@ var TransactionManager = class {
|
|
|
1950
1950
|
let hasTimedOut = false;
|
|
1951
1951
|
const startTimer = setTimeout(() => hasTimedOut = true, validatedOptions.maxWait);
|
|
1952
1952
|
startTimer.unref();
|
|
1953
|
-
transaction.transaction = await this.driverAdapter.startTransaction(validatedOptions.isolationLevel).catch(rethrowAsUserFacing)
|
|
1953
|
+
transaction.transaction = await this.driverAdapter.startTransaction(validatedOptions.isolationLevel).catch(rethrowAsUserFacing);
|
|
1954
|
+
clearTimeout(startTimer);
|
|
1954
1955
|
switch (transaction.status) {
|
|
1955
1956
|
case "waiting":
|
|
1956
1957
|
if (hasTimedOut) {
|
package/dist/index.mjs
CHANGED
|
@@ -1900,7 +1900,8 @@ var TransactionManager = class {
|
|
|
1900
1900
|
let hasTimedOut = false;
|
|
1901
1901
|
const startTimer = setTimeout(() => hasTimedOut = true, validatedOptions.maxWait);
|
|
1902
1902
|
startTimer.unref();
|
|
1903
|
-
transaction.transaction = await this.driverAdapter.startTransaction(validatedOptions.isolationLevel).catch(rethrowAsUserFacing)
|
|
1903
|
+
transaction.transaction = await this.driverAdapter.startTransaction(validatedOptions.isolationLevel).catch(rethrowAsUserFacing);
|
|
1904
|
+
clearTimeout(startTimer);
|
|
1904
1905
|
switch (transaction.status) {
|
|
1905
1906
|
case "waiting":
|
|
1906
1907
|
if (hasTimedOut) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prisma/client-engine-runtime",
|
|
3
|
-
"version": "6.16.0-integration-
|
|
3
|
+
"version": "6.16.0-integration-feat-prisma-client-default-runtime.2",
|
|
4
4
|
"description": "This package is intended for Prisma's internal use",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -31,8 +31,8 @@
|
|
|
31
31
|
"nanoid": "5.1.5",
|
|
32
32
|
"ulid": "3.0.0",
|
|
33
33
|
"uuid": "11.1.0",
|
|
34
|
-
"@prisma/debug": "6.16.0-integration-
|
|
35
|
-
"@prisma/driver-adapter-utils": "6.16.0-integration-
|
|
34
|
+
"@prisma/debug": "6.16.0-integration-feat-prisma-client-default-runtime.2",
|
|
35
|
+
"@prisma/driver-adapter-utils": "6.16.0-integration-feat-prisma-client-default-runtime.2"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"@types/jest": "29.5.14",
|