core-3nweb-client-lib 0.42.2 → 0.42.4

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.
Files changed (23) hide show
  1. package/build/core/asmail/inbox/inbox-events.d.ts +3 -2
  2. package/build/core/asmail/inbox/inbox-events.js +25 -24
  3. package/build/core/asmail/inbox/index.d.ts +1 -0
  4. package/build/core/asmail/inbox/index.js +19 -1
  5. package/package.json +1 -1
  6. package/{test-data-1-1759677394615/util/logs/2025-10-05.log.txt → test-data-1-1759766726524/util/logs/2025-10-06.log.txt} +4 -4
  7. package/{test-data-10-1759677431029/util/logs/2025-10-05.log.txt → test-data-10-1759766763382/util/logs/2025-10-06.log.txt} +4 -4
  8. package/{test-data-11-1759677431029/util/logs/2025-10-05.log.txt → test-data-11-1759766763382/util/logs/2025-10-06.log.txt} +4 -4
  9. package/{test-data-12-1759677434728/util/logs/2025-10-05.log.txt → test-data-12-1759766767122/util/logs/2025-10-06.log.txt} +4 -4
  10. package/{test-data-13-1759677435553/util/logs/2025-10-05.log.txt → test-data-13-1759766767971/util/logs/2025-10-06.log.txt} +8 -8
  11. package/test-data-2-1759766726527/util/logs/2025-10-06.log.txt +14 -0
  12. package/{test-data-3-1759677399141/util/logs/2025-10-05.log.txt → test-data-3-1759766731046/util/logs/2025-10-06.log.txt} +8 -8
  13. package/{test-data-4-1759677405076/util/logs/2025-10-05.log.txt → test-data-4-1759766737027/util/logs/2025-10-06.log.txt} +8 -8
  14. package/test-data-5-1759766746387/util/logs/2025-10-06.log.txt +14 -0
  15. package/test-data-6-1759766748340/util/logs/2025-10-06.log.txt +14 -0
  16. package/test-data-7-1759766750334/util/logs/2025-10-06.log.txt +14 -0
  17. package/test-data-8-1759766759011/util/logs/2025-10-06.log.txt +14 -0
  18. package/{test-data-9-1759677427624/util/logs/2025-10-05.log.txt → test-data-9-1759766759878/util/logs/2025-10-06.log.txt} +8 -8
  19. package/test-data-2-1759677394617/util/logs/2025-10-05.log.txt +0 -14
  20. package/test-data-5-1759677414316/util/logs/2025-10-05.log.txt +0 -14
  21. package/test-data-6-1759677416229/util/logs/2025-10-05.log.txt +0 -14
  22. package/test-data-7-1759677418207/util/logs/2025-10-05.log.txt +0 -14
  23. package/test-data-8-1759677426790/util/logs/2025-10-05.log.txt +0 -14
@@ -15,8 +15,9 @@ type MsgInfo = web3n.asmail.MsgInfo;
15
15
  * Hence, this should do restarts to server around wakeup events.
16
16
  */
17
17
  export declare class InboxEvents {
18
+ private readonly msgReceiver;
18
19
  private readonly getMsg;
19
- private readonly listMsgs;
20
+ private readonly listNewMsgs;
20
21
  private readonly rmMsg;
21
22
  private readonly logError;
22
23
  private readonly newMsgs;
@@ -25,7 +26,7 @@ export declare class InboxEvents {
25
26
  private readonly makeServerEvents;
26
27
  private networkActive;
27
28
  private disconnectedAt;
28
- constructor(msgReceiver: MailRecipient, getMsg: (msgId: string) => Promise<IncomingMessage>, listMsgs: (fromTS: number) => Promise<MsgInfo[]>, rmMsg: (msgId: string) => Promise<void>, logError: LogError);
29
+ constructor(msgReceiver: MailRecipient, getMsg: (msgId: string) => Promise<IncomingMessage>, listNewMsgs: (fromTS: number) => Promise<MsgInfo[]>, rmMsg: (msgId: string) => Promise<void>, logError: LogError);
29
30
  private startListening;
30
31
  private sleepAndRestart;
31
32
  private getMessage;
@@ -36,9 +36,10 @@ const BUFFER_MILLIS_FOR_LISTING = 2 * 60 * 1000;
36
36
  * Hence, this should do restarts to server around wakeup events.
37
37
  */
38
38
  class InboxEvents {
39
- constructor(msgReceiver, getMsg, listMsgs, rmMsg, logError) {
39
+ constructor(msgReceiver, getMsg, listNewMsgs, rmMsg, logError) {
40
+ this.msgReceiver = msgReceiver;
40
41
  this.getMsg = getMsg;
41
- this.listMsgs = listMsgs;
42
+ this.listNewMsgs = listNewMsgs;
42
43
  this.rmMsg = rmMsg;
43
44
  this.logError = logError;
44
45
  this.newMsgs = new rxjs_1.Subject();
@@ -93,9 +94,10 @@ class InboxEvents {
93
94
  return await this.getMsg(msgId);
94
95
  }
95
96
  catch (err) {
96
- // XXX we need to skip, if it is a connectivity error here
97
- // await this.rmMsg(msgId);
98
- await this.logError(err, `Cannot get message ${msgId}, and removing it as a result`);
97
+ // XXX we need to skip, if it is a connectivity error here;
98
+ // should we remove on non-connectivity error
99
+ // await this.rmMsg(msgId).catch(noop);
100
+ await this.logError(err, `Cannot get message ${msgId}`);
99
101
  }
100
102
  }
101
103
  subscribe(event, observer) {
@@ -151,31 +153,30 @@ class InboxEvents {
151
153
  }
152
154
  }
153
155
  async listMsgsFromDisconnectedPeriod() {
154
- // DEBUG log
155
- await this.logError(null, `entering listMsgsFromDisconnectedPeriod at ${Date.now()}, this.disconnectedAt is ${this.disconnectedAt}`);
156
156
  if (!this.disconnectedAt) {
157
157
  return;
158
158
  }
159
- const fromTS = this.disconnectedAt - BUFFER_MILLIS_FOR_LISTING;
160
- // DEBUG log
161
- await this.logError(null, `starting listMsgsFromDisconnectedPeriod process with fromTS ${fromTS}`);
162
- let msgInfos = (await this.listMsgs(fromTS))
163
- .filter(info => (fromTS <= info.deliveryTS))
164
- .sort((a, b) => (a.deliveryTS - b.deliveryTS));
165
- // DEBUG log
166
- await this.logError(null, ` ... filtered list has ${msgInfos.length} number of items`);
167
- for (const info of msgInfos) {
168
- const msg = await this.getMessage(info.msgId);
169
- // DEBUG log
170
- await this.logError(null, ` ... msg ${msg === null || msg === void 0 ? void 0 : msg.msgId} found`);
171
- if (msg) {
172
- this.newMsgs.next(msg);
159
+ try {
160
+ const fromTS = this.disconnectedAt - BUFFER_MILLIS_FOR_LISTING;
161
+ const msgInfos = (await this.listNewMsgs(fromTS))
162
+ .sort((a, b) => (a.deliveryTS - b.deliveryTS));
163
+ for (const info of msgInfos) {
164
+ const msg = await this.getMessage(info.msgId);
165
+ if (msg) {
166
+ this.newMsgs.next(msg);
167
+ this.disconnectedAt = msg.deliveryTS;
168
+ }
169
+ else if (!this.networkActive) {
170
+ return;
171
+ }
173
172
  }
174
- else if (!this.networkActive) {
175
- return;
173
+ this.disconnectedAt = undefined;
174
+ }
175
+ catch (err) {
176
+ if (err.type !== 'connect') {
177
+ await this.logError(err, `Error while retrieving messages, from disconnected period`);
176
178
  }
177
179
  }
178
- this.disconnectedAt = undefined;
179
180
  }
180
181
  }
181
182
  exports.InboxEvents = InboxEvents;
@@ -94,6 +94,7 @@ export declare class InboxOnServer {
94
94
  private absorbSendingParams;
95
95
  private checkServerAuthIfPresent;
96
96
  private listMsgs;
97
+ private listNewMsgs;
97
98
  private getMsg;
98
99
  private msgToUIForm;
99
100
  suspendNetworkActivity(): void;
@@ -51,7 +51,7 @@ class InboxOnServer {
51
51
  this.logError = logError;
52
52
  this.procs = new synced_1.NamedProcs();
53
53
  this.recentlyOpenedMsgs = (0, timed_cache_1.makeTimedCache)(60 * 1000);
54
- this.inboxEvents = new inbox_events_1.InboxEvents(this.msgReceiver, this.getMsg.bind(this), this.listMsgs.bind(this), this.removeMsg.bind(this), this.logError);
54
+ this.inboxEvents = new inbox_events_1.InboxEvents(this.msgReceiver, this.getMsg.bind(this), this.listNewMsgs.bind(this), this.removeMsg.bind(this), this.logError);
55
55
  Object.seal(this);
56
56
  }
57
57
  static async makeAndStart(cachePath, syncedFS, r) {
@@ -237,6 +237,24 @@ class InboxOnServer {
237
237
  return this.index.listMsgs(fromTS);
238
238
  });
239
239
  }
240
+ async listNewMsgs(fromTS) {
241
+ const msgIds = await this.msgReceiver.listMsgs(fromTS);
242
+ // remove from listing messages already in index
243
+ const indexedMsgs = await this.index.listMsgs(fromTS);
244
+ for (const info of indexedMsgs) {
245
+ const ind = msgIds.indexOf(info.msgId);
246
+ if (ind >= 0) {
247
+ msgIds.splice(ind, 1);
248
+ }
249
+ }
250
+ if (msgIds.length === 0) {
251
+ return [];
252
+ }
253
+ // cache and index these
254
+ await Promise.all(msgIds.map(msgId => this.startCachingAndAddKeyToIndex(msgId)));
255
+ // get info's from index, focusing on specific messages only
256
+ return (await this.index.listMsgs(fromTS)).filter(({ msgId }) => msgIds.includes(msgId));
257
+ }
240
258
  async getMsg(msgId) {
241
259
  if (!msgId || (typeof msgId !== 'string')) {
242
260
  throw `Given message id is not a non-empty string`;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "core-3nweb-client-lib",
3
- "version": "0.42.2",
3
+ "version": "0.42.4",
4
4
  "description": "3NWeb client core library, embeddable into different environments",
5
5
  "main": "build/lib-index.js",
6
6
  "types": "build/lib-index.d.ts",
@@ -1,13 +1,13 @@
1
1
 
2
- Sun Oct 05 2025 11:16:52 GMT-0400 (Eastern Daylight Saving Time) ==================================
3
- Core version 0.42.2
2
+ Mon Oct 06 2025 12:05:44 GMT-0400 (Eastern Daylight Saving Time) ==================================
3
+ Core version 0.42.4
4
4
  Log level: error.
5
5
  WebSocket to wss://localhost:8088/asmail/retrieval/events closed with error
6
6
 
7
7
  Error message: undefined
8
8
 
9
- Sun Oct 05 2025 11:16:52 GMT-0400 (Eastern Daylight Saving Time) ==================================
10
- Core version 0.42.2
9
+ Mon Oct 06 2025 12:05:44 GMT-0400 (Eastern Daylight Saving Time) ==================================
10
+ Core version 0.42.4
11
11
  Log level: error.
12
12
  WebSocket to wss://localhost:8088/3nstorage/owner/events closed with error
13
13
 
@@ -1,13 +1,13 @@
1
1
 
2
- Sun Oct 05 2025 11:17:14 GMT-0400 (Eastern Daylight Saving Time) ==================================
3
- Core version 0.42.2
2
+ Mon Oct 06 2025 12:06:07 GMT-0400 (Eastern Daylight Saving Time) ==================================
3
+ Core version 0.42.4
4
4
  Log level: error.
5
5
  WebSocket to wss://localhost:8088/asmail/retrieval/events closed with error
6
6
 
7
7
  Error message: undefined
8
8
 
9
- Sun Oct 05 2025 11:17:14 GMT-0400 (Eastern Daylight Saving Time) ==================================
10
- Core version 0.42.2
9
+ Mon Oct 06 2025 12:06:07 GMT-0400 (Eastern Daylight Saving Time) ==================================
10
+ Core version 0.42.4
11
11
  Log level: error.
12
12
  WebSocket to wss://localhost:8088/3nstorage/owner/events closed with error
13
13
 
@@ -1,13 +1,13 @@
1
1
 
2
- Sun Oct 05 2025 11:17:14 GMT-0400 (Eastern Daylight Saving Time) ==================================
3
- Core version 0.42.2
2
+ Mon Oct 06 2025 12:06:07 GMT-0400 (Eastern Daylight Saving Time) ==================================
3
+ Core version 0.42.4
4
4
  Log level: error.
5
5
  WebSocket to wss://localhost:8088/asmail/retrieval/events closed with error
6
6
 
7
7
  Error message: undefined
8
8
 
9
- Sun Oct 05 2025 11:17:14 GMT-0400 (Eastern Daylight Saving Time) ==================================
10
- Core version 0.42.2
9
+ Mon Oct 06 2025 12:06:07 GMT-0400 (Eastern Daylight Saving Time) ==================================
10
+ Core version 0.42.4
11
11
  Log level: error.
12
12
  WebSocket to wss://localhost:8088/3nstorage/owner/events closed with error
13
13
 
@@ -1,13 +1,13 @@
1
1
 
2
- Sun Oct 05 2025 11:17:17 GMT-0400 (Eastern Daylight Saving Time) ==================================
3
- Core version 0.42.2
2
+ Mon Oct 06 2025 12:06:10 GMT-0400 (Eastern Daylight Saving Time) ==================================
3
+ Core version 0.42.4
4
4
  Log level: error.
5
5
  WebSocket to wss://localhost:8088/asmail/retrieval/events closed with error
6
6
 
7
7
  Error message: undefined
8
8
 
9
- Sun Oct 05 2025 11:17:17 GMT-0400 (Eastern Daylight Saving Time) ==================================
10
- Core version 0.42.2
9
+ Mon Oct 06 2025 12:06:10 GMT-0400 (Eastern Daylight Saving Time) ==================================
10
+ Core version 0.42.4
11
11
  Log level: error.
12
12
  WebSocket to wss://localhost:8088/3nstorage/owner/events closed with error
13
13
 
@@ -1,27 +1,27 @@
1
1
 
2
- Sun Oct 05 2025 11:17:17 GMT-0400 (Eastern Daylight Saving Time) ==================================
3
- Core version 0.42.2
2
+ Mon Oct 06 2025 12:06:10 GMT-0400 (Eastern Daylight Saving Time) ==================================
3
+ Core version 0.42.4
4
4
  Log level: error.
5
5
  WebSocket to wss://localhost:8088/asmail/retrieval/events closed with error
6
6
 
7
7
  Error message: undefined
8
8
 
9
- Sun Oct 05 2025 11:17:17 GMT-0400 (Eastern Daylight Saving Time) ==================================
10
- Core version 0.42.2
9
+ Mon Oct 06 2025 12:06:10 GMT-0400 (Eastern Daylight Saving Time) ==================================
10
+ Core version 0.42.4
11
11
  Log level: error.
12
12
  WebSocket to wss://localhost:8088/asmail/retrieval/events closed with error
13
13
 
14
14
  Error message: undefined
15
15
 
16
- Sun Oct 05 2025 11:17:17 GMT-0400 (Eastern Daylight Saving Time) ==================================
17
- Core version 0.42.2
16
+ Mon Oct 06 2025 12:06:10 GMT-0400 (Eastern Daylight Saving Time) ==================================
17
+ Core version 0.42.4
18
18
  Log level: error.
19
19
  WebSocket to wss://localhost:8088/3nstorage/owner/events closed with error
20
20
 
21
21
  Error message: undefined
22
22
 
23
- Sun Oct 05 2025 11:17:17 GMT-0400 (Eastern Daylight Saving Time) ==================================
24
- Core version 0.42.2
23
+ Mon Oct 06 2025 12:06:10 GMT-0400 (Eastern Daylight Saving Time) ==================================
24
+ Core version 0.42.4
25
25
  Log level: error.
26
26
  WebSocket to wss://localhost:8088/3nstorage/owner/events closed with error
27
27
 
@@ -0,0 +1,14 @@
1
+
2
+ Mon Oct 06 2025 12:05:46 GMT-0400 (Eastern Daylight Saving Time) ==================================
3
+ Core version 0.42.4
4
+ Log level: error.
5
+ WebSocket to wss://localhost:8088/asmail/retrieval/events closed with error
6
+
7
+ Error message: undefined
8
+
9
+ Mon Oct 06 2025 12:05:46 GMT-0400 (Eastern Daylight Saving Time) ==================================
10
+ Core version 0.42.4
11
+ Log level: error.
12
+ WebSocket to wss://localhost:8088/3nstorage/owner/events closed with error
13
+
14
+ Error message: undefined
@@ -1,27 +1,27 @@
1
1
 
2
- Sun Oct 05 2025 11:16:45 GMT-0400 (Eastern Daylight Saving Time) ==================================
3
- Core version 0.42.2
2
+ Mon Oct 06 2025 12:05:37 GMT-0400 (Eastern Daylight Saving Time) ==================================
3
+ Core version 0.42.4
4
4
  Log level: error.
5
5
  WebSocket to wss://localhost:8088/asmail/retrieval/events closed with error
6
6
 
7
7
  Error message: undefined
8
8
 
9
- Sun Oct 05 2025 11:16:45 GMT-0400 (Eastern Daylight Saving Time) ==================================
10
- Core version 0.42.2
9
+ Mon Oct 06 2025 12:05:37 GMT-0400 (Eastern Daylight Saving Time) ==================================
10
+ Core version 0.42.4
11
11
  Log level: error.
12
12
  WebSocket to wss://localhost:8088/asmail/retrieval/events closed with error
13
13
 
14
14
  Error message: undefined
15
15
 
16
- Sun Oct 05 2025 11:16:45 GMT-0400 (Eastern Daylight Saving Time) ==================================
17
- Core version 0.42.2
16
+ Mon Oct 06 2025 12:05:37 GMT-0400 (Eastern Daylight Saving Time) ==================================
17
+ Core version 0.42.4
18
18
  Log level: error.
19
19
  WebSocket to wss://localhost:8088/3nstorage/owner/events closed with error
20
20
 
21
21
  Error message: undefined
22
22
 
23
- Sun Oct 05 2025 11:16:45 GMT-0400 (Eastern Daylight Saving Time) ==================================
24
- Core version 0.42.2
23
+ Mon Oct 06 2025 12:05:37 GMT-0400 (Eastern Daylight Saving Time) ==================================
24
+ Core version 0.42.4
25
25
  Log level: error.
26
26
  WebSocket to wss://localhost:8088/3nstorage/owner/events closed with error
27
27
 
@@ -1,27 +1,27 @@
1
1
 
2
- Sun Oct 05 2025 11:16:50 GMT-0400 (Eastern Daylight Saving Time) ==================================
3
- Core version 0.42.2
2
+ Mon Oct 06 2025 12:05:42 GMT-0400 (Eastern Daylight Saving Time) ==================================
3
+ Core version 0.42.4
4
4
  Log level: error.
5
5
  WebSocket to wss://localhost:8088/asmail/retrieval/events closed with error
6
6
 
7
7
  Error message: undefined
8
8
 
9
- Sun Oct 05 2025 11:16:50 GMT-0400 (Eastern Daylight Saving Time) ==================================
10
- Core version 0.42.2
9
+ Mon Oct 06 2025 12:05:42 GMT-0400 (Eastern Daylight Saving Time) ==================================
10
+ Core version 0.42.4
11
11
  Log level: error.
12
12
  WebSocket to wss://localhost:8088/asmail/retrieval/events closed with error
13
13
 
14
14
  Error message: undefined
15
15
 
16
- Sun Oct 05 2025 11:16:50 GMT-0400 (Eastern Daylight Saving Time) ==================================
17
- Core version 0.42.2
16
+ Mon Oct 06 2025 12:05:42 GMT-0400 (Eastern Daylight Saving Time) ==================================
17
+ Core version 0.42.4
18
18
  Log level: error.
19
19
  WebSocket to wss://localhost:8088/3nstorage/owner/events closed with error
20
20
 
21
21
  Error message: undefined
22
22
 
23
- Sun Oct 05 2025 11:16:50 GMT-0400 (Eastern Daylight Saving Time) ==================================
24
- Core version 0.42.2
23
+ Mon Oct 06 2025 12:05:42 GMT-0400 (Eastern Daylight Saving Time) ==================================
24
+ Core version 0.42.4
25
25
  Log level: error.
26
26
  WebSocket to wss://localhost:8088/3nstorage/owner/events closed with error
27
27
 
@@ -0,0 +1,14 @@
1
+
2
+ Mon Oct 06 2025 12:05:48 GMT-0400 (Eastern Daylight Saving Time) ==================================
3
+ Core version 0.42.4
4
+ Log level: error.
5
+ WebSocket to wss://localhost:8088/asmail/retrieval/events closed with error
6
+
7
+ Error message: undefined
8
+
9
+ Mon Oct 06 2025 12:05:48 GMT-0400 (Eastern Daylight Saving Time) ==================================
10
+ Core version 0.42.4
11
+ Log level: error.
12
+ WebSocket to wss://localhost:8088/3nstorage/owner/events closed with error
13
+
14
+ Error message: undefined
@@ -0,0 +1,14 @@
1
+
2
+ Mon Oct 06 2025 12:05:50 GMT-0400 (Eastern Daylight Saving Time) ==================================
3
+ Core version 0.42.4
4
+ Log level: error.
5
+ WebSocket to wss://localhost:8088/asmail/retrieval/events closed with error
6
+
7
+ Error message: undefined
8
+
9
+ Mon Oct 06 2025 12:05:50 GMT-0400 (Eastern Daylight Saving Time) ==================================
10
+ Core version 0.42.4
11
+ Log level: error.
12
+ WebSocket to wss://localhost:8088/3nstorage/owner/events closed with error
13
+
14
+ Error message: undefined
@@ -0,0 +1,14 @@
1
+
2
+ Mon Oct 06 2025 12:05:58 GMT-0400 (Eastern Daylight Saving Time) ==================================
3
+ Core version 0.42.4
4
+ Log level: error.
5
+ WebSocket to wss://localhost:8088/asmail/retrieval/events closed with error
6
+
7
+ Error message: undefined
8
+
9
+ Mon Oct 06 2025 12:05:58 GMT-0400 (Eastern Daylight Saving Time) ==================================
10
+ Core version 0.42.4
11
+ Log level: error.
12
+ WebSocket to wss://localhost:8088/3nstorage/owner/events closed with error
13
+
14
+ Error message: undefined
@@ -0,0 +1,14 @@
1
+
2
+ Mon Oct 06 2025 12:06:03 GMT-0400 (Eastern Daylight Saving Time) ==================================
3
+ Core version 0.42.4
4
+ Log level: error.
5
+ WebSocket to wss://localhost:8088/asmail/retrieval/events closed with error
6
+
7
+ Error message: undefined
8
+
9
+ Mon Oct 06 2025 12:06:03 GMT-0400 (Eastern Daylight Saving Time) ==================================
10
+ Core version 0.42.4
11
+ Log level: error.
12
+ WebSocket to wss://localhost:8088/3nstorage/owner/events closed with error
13
+
14
+ Error message: undefined
@@ -1,27 +1,27 @@
1
1
 
2
- Sun Oct 05 2025 11:17:11 GMT-0400 (Eastern Daylight Saving Time) ==================================
3
- Core version 0.42.2
2
+ Mon Oct 06 2025 12:06:03 GMT-0400 (Eastern Daylight Saving Time) ==================================
3
+ Core version 0.42.4
4
4
  Log level: error.
5
5
  WebSocket to wss://localhost:8088/asmail/retrieval/events closed with error
6
6
 
7
7
  Error message: undefined
8
8
 
9
- Sun Oct 05 2025 11:17:11 GMT-0400 (Eastern Daylight Saving Time) ==================================
10
- Core version 0.42.2
9
+ Mon Oct 06 2025 12:06:03 GMT-0400 (Eastern Daylight Saving Time) ==================================
10
+ Core version 0.42.4
11
11
  Log level: error.
12
12
  WebSocket to wss://localhost:8088/asmail/retrieval/events closed with error
13
13
 
14
14
  Error message: undefined
15
15
 
16
- Sun Oct 05 2025 11:17:11 GMT-0400 (Eastern Daylight Saving Time) ==================================
17
- Core version 0.42.2
16
+ Mon Oct 06 2025 12:06:03 GMT-0400 (Eastern Daylight Saving Time) ==================================
17
+ Core version 0.42.4
18
18
  Log level: error.
19
19
  WebSocket to wss://localhost:8088/3nstorage/owner/events closed with error
20
20
 
21
21
  Error message: undefined
22
22
 
23
- Sun Oct 05 2025 11:17:11 GMT-0400 (Eastern Daylight Saving Time) ==================================
24
- Core version 0.42.2
23
+ Mon Oct 06 2025 12:06:03 GMT-0400 (Eastern Daylight Saving Time) ==================================
24
+ Core version 0.42.4
25
25
  Log level: error.
26
26
  WebSocket to wss://localhost:8088/3nstorage/owner/events closed with error
27
27
 
@@ -1,14 +0,0 @@
1
-
2
- Sun Oct 05 2025 11:16:54 GMT-0400 (Eastern Daylight Saving Time) ==================================
3
- Core version 0.42.2
4
- Log level: error.
5
- WebSocket to wss://localhost:8088/asmail/retrieval/events closed with error
6
-
7
- Error message: undefined
8
-
9
- Sun Oct 05 2025 11:16:54 GMT-0400 (Eastern Daylight Saving Time) ==================================
10
- Core version 0.42.2
11
- Log level: error.
12
- WebSocket to wss://localhost:8088/3nstorage/owner/events closed with error
13
-
14
- Error message: undefined
@@ -1,14 +0,0 @@
1
-
2
- Sun Oct 05 2025 11:16:56 GMT-0400 (Eastern Daylight Saving Time) ==================================
3
- Core version 0.42.2
4
- Log level: error.
5
- WebSocket to wss://localhost:8088/asmail/retrieval/events closed with error
6
-
7
- Error message: undefined
8
-
9
- Sun Oct 05 2025 11:16:56 GMT-0400 (Eastern Daylight Saving Time) ==================================
10
- Core version 0.42.2
11
- Log level: error.
12
- WebSocket to wss://localhost:8088/3nstorage/owner/events closed with error
13
-
14
- Error message: undefined
@@ -1,14 +0,0 @@
1
-
2
- Sun Oct 05 2025 11:16:58 GMT-0400 (Eastern Daylight Saving Time) ==================================
3
- Core version 0.42.2
4
- Log level: error.
5
- WebSocket to wss://localhost:8088/asmail/retrieval/events closed with error
6
-
7
- Error message: undefined
8
-
9
- Sun Oct 05 2025 11:16:58 GMT-0400 (Eastern Daylight Saving Time) ==================================
10
- Core version 0.42.2
11
- Log level: error.
12
- WebSocket to wss://localhost:8088/3nstorage/owner/events closed with error
13
-
14
- Error message: undefined
@@ -1,14 +0,0 @@
1
-
2
- Sun Oct 05 2025 11:17:06 GMT-0400 (Eastern Daylight Saving Time) ==================================
3
- Core version 0.42.2
4
- Log level: error.
5
- WebSocket to wss://localhost:8088/asmail/retrieval/events closed with error
6
-
7
- Error message: undefined
8
-
9
- Sun Oct 05 2025 11:17:06 GMT-0400 (Eastern Daylight Saving Time) ==================================
10
- Core version 0.42.2
11
- Log level: error.
12
- WebSocket to wss://localhost:8088/3nstorage/owner/events closed with error
13
-
14
- Error message: undefined
@@ -1,14 +0,0 @@
1
-
2
- Sun Oct 05 2025 11:17:11 GMT-0400 (Eastern Daylight Saving Time) ==================================
3
- Core version 0.42.2
4
- Log level: error.
5
- WebSocket to wss://localhost:8088/asmail/retrieval/events closed with error
6
-
7
- Error message: undefined
8
-
9
- Sun Oct 05 2025 11:17:11 GMT-0400 (Eastern Daylight Saving Time) ==================================
10
- Core version 0.42.2
11
- Log level: error.
12
- WebSocket to wss://localhost:8088/3nstorage/owner/events closed with error
13
-
14
- Error message: undefined