@m1212e/rumble 0.16.20 → 0.16.21
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/out/index.cjs +3 -2
- package/out/index.cjs.map +1 -1
- package/out/index.d.cts.map +1 -1
- package/out/index.d.mts.map +1 -1
- package/out/index.mjs +4 -3
- package/out/index.mjs.map +1 -1
- package/package.json +1 -1
package/out/index.cjs
CHANGED
|
@@ -218,7 +218,7 @@ function mapNullFieldsToUndefined(obj) {
|
|
|
218
218
|
|
|
219
219
|
//#endregion
|
|
220
220
|
//#region package.json
|
|
221
|
-
var version = "0.16.
|
|
221
|
+
var version = "0.16.21";
|
|
222
222
|
|
|
223
223
|
//#endregion
|
|
224
224
|
//#region lib/helpers/mergeFilters.ts
|
|
@@ -1648,7 +1648,8 @@ export const db = drizzle(
|
|
|
1648
1648
|
try {
|
|
1649
1649
|
return await executeFn(options);
|
|
1650
1650
|
} catch (error) {
|
|
1651
|
-
span.recordException(error);
|
|
1651
|
+
if (error instanceof Error) span.recordException(error);
|
|
1652
|
+
span.setStatus({ code: _opentelemetry_api.SpanStatusCode.ERROR });
|
|
1652
1653
|
throw error;
|
|
1653
1654
|
} finally {
|
|
1654
1655
|
span.end();
|