@dxos/client-services 0.3.11-main.e26c0a5 → 0.3.11-main.e440a84
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/lib/browser/{chunk-TB6BFBMH.mjs → chunk-QI7GVBD6.mjs} +5 -5
- package/dist/lib/browser/{chunk-TB6BFBMH.mjs.map → chunk-QI7GVBD6.mjs.map} +3 -3
- package/dist/lib/browser/index.mjs +1 -1
- package/dist/lib/browser/meta.json +1 -1
- package/dist/lib/browser/packlets/testing/index.mjs +1 -1
- package/dist/lib/node/{chunk-NDK3LMHN.cjs → chunk-5HRYSMBK.cjs} +7 -7
- package/dist/lib/node/{chunk-NDK3LMHN.cjs.map → chunk-5HRYSMBK.cjs.map} +3 -3
- package/dist/lib/node/index.cjs +37 -37
- package/dist/lib/node/meta.json +1 -1
- package/dist/lib/node/packlets/testing/index.cjs +8 -8
- package/dist/types/src/version.d.ts +1 -1
- package/package.json +35 -35
- package/src/packlets/spaces/data-space.ts +3 -3
- package/src/version.ts +1 -1
|
@@ -2566,7 +2566,7 @@ var getPlatform = () => {
|
|
|
2566
2566
|
};
|
|
2567
2567
|
|
|
2568
2568
|
// packages/sdk/client-services/src/version.ts
|
|
2569
|
-
var DXOS_VERSION = "0.3.11-main.
|
|
2569
|
+
var DXOS_VERSION = "0.3.11-main.e440a84";
|
|
2570
2570
|
|
|
2571
2571
|
// packages/sdk/client-services/src/packlets/services/diagnostics.ts
|
|
2572
2572
|
var __dxlog_file10 = "/home/runner/work/dxos/dxos/packages/sdk/client-services/src/packlets/services/diagnostics.ts";
|
|
@@ -2710,7 +2710,7 @@ var getSpaceStats = async (space) => {
|
|
|
2710
2710
|
// packages/sdk/client-services/src/packlets/spaces/data-space.ts
|
|
2711
2711
|
import { Event as Event5, scheduleTask as scheduleTask4, sleep as sleep2, synchronized, trackLeaks } from "@dxos/async";
|
|
2712
2712
|
import { AUTH_TIMEOUT as AUTH_TIMEOUT2 } from "@dxos/client-protocol";
|
|
2713
|
-
import { cancelWithContext as cancelWithContext2, Context as Context7 } from "@dxos/context";
|
|
2713
|
+
import { cancelWithContext as cancelWithContext2, Context as Context7, ContextDisposedError } from "@dxos/context";
|
|
2714
2714
|
import { timed } from "@dxos/debug";
|
|
2715
2715
|
import { createMappedFeedWriter } from "@dxos/echo-pipeline";
|
|
2716
2716
|
import { failedInvariant } from "@dxos/invariant";
|
|
@@ -3159,7 +3159,7 @@ var DataSpace = class {
|
|
|
3159
3159
|
this.metrics.pipelineInitBegin = /* @__PURE__ */ new Date();
|
|
3160
3160
|
await this.initializeDataPipeline();
|
|
3161
3161
|
} catch (err) {
|
|
3162
|
-
if (err instanceof CancelledError) {
|
|
3162
|
+
if (err instanceof CancelledError || err instanceof ContextDisposedError) {
|
|
3163
3163
|
log10("data pipeline initialization cancelled", err, {
|
|
3164
3164
|
F: __dxlog_file12,
|
|
3165
3165
|
L: 250,
|
|
@@ -3305,7 +3305,7 @@ var DataSpace = class {
|
|
|
3305
3305
|
}
|
|
3306
3306
|
}
|
|
3307
3307
|
_onNewAutomergeRoot(rootUrl) {
|
|
3308
|
-
log10
|
|
3308
|
+
log10("loading automerge root doc for space", {
|
|
3309
3309
|
space: this.key,
|
|
3310
3310
|
rootUrl
|
|
3311
3311
|
}, {
|
|
@@ -5294,4 +5294,4 @@ export {
|
|
|
5294
5294
|
createDefaultModelFactory,
|
|
5295
5295
|
ClientServicesHost
|
|
5296
5296
|
};
|
|
5297
|
-
//# sourceMappingURL=chunk-
|
|
5297
|
+
//# sourceMappingURL=chunk-QI7GVBD6.mjs.map
|