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.
- package/build/core/asmail/inbox/inbox-events.d.ts +3 -2
- package/build/core/asmail/inbox/inbox-events.js +25 -24
- package/build/core/asmail/inbox/index.d.ts +1 -0
- package/build/core/asmail/inbox/index.js +19 -1
- package/package.json +1 -1
- 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
- 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
- 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
- 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
- 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
- package/test-data-2-1759766726527/util/logs/2025-10-06.log.txt +14 -0
- 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
- 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
- package/test-data-5-1759766746387/util/logs/2025-10-06.log.txt +14 -0
- package/test-data-6-1759766748340/util/logs/2025-10-06.log.txt +14 -0
- package/test-data-7-1759766750334/util/logs/2025-10-06.log.txt +14 -0
- package/test-data-8-1759766759011/util/logs/2025-10-06.log.txt +14 -0
- 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
- package/test-data-2-1759677394617/util/logs/2025-10-05.log.txt +0 -14
- package/test-data-5-1759677414316/util/logs/2025-10-05.log.txt +0 -14
- package/test-data-6-1759677416229/util/logs/2025-10-05.log.txt +0 -14
- package/test-data-7-1759677418207/util/logs/2025-10-05.log.txt +0 -14
- 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
|
|
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>,
|
|
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,
|
|
39
|
+
constructor(msgReceiver, getMsg, listNewMsgs, rmMsg, logError) {
|
|
40
|
+
this.msgReceiver = msgReceiver;
|
|
40
41
|
this.getMsg = getMsg;
|
|
41
|
-
this.
|
|
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
|
-
//
|
|
98
|
-
await this.
|
|
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
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
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
|
-
|
|
175
|
-
|
|
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;
|
|
@@ -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.
|
|
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,13 +1,13 @@
|
|
|
1
1
|
|
|
2
|
-
|
|
3
|
-
Core version 0.42.
|
|
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
|
-
|
|
10
|
-
Core version 0.42.
|
|
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
|
-
|
|
3
|
-
Core version 0.42.
|
|
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
|
-
|
|
10
|
-
Core version 0.42.
|
|
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
|
-
|
|
3
|
-
Core version 0.42.
|
|
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
|
-
|
|
10
|
-
Core version 0.42.
|
|
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
|
-
|
|
3
|
-
Core version 0.42.
|
|
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
|
-
|
|
10
|
-
Core version 0.42.
|
|
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
|
-
|
|
3
|
-
Core version 0.42.
|
|
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
|
-
|
|
10
|
-
Core version 0.42.
|
|
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
|
-
|
|
17
|
-
Core version 0.42.
|
|
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
|
-
|
|
24
|
-
Core version 0.42.
|
|
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
|
-
|
|
3
|
-
Core version 0.42.
|
|
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
|
-
|
|
10
|
-
Core version 0.42.
|
|
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
|
-
|
|
17
|
-
Core version 0.42.
|
|
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
|
-
|
|
24
|
-
Core version 0.42.
|
|
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
|
-
|
|
3
|
-
Core version 0.42.
|
|
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
|
-
|
|
10
|
-
Core version 0.42.
|
|
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
|
-
|
|
17
|
-
Core version 0.42.
|
|
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
|
-
|
|
24
|
-
Core version 0.42.
|
|
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
|
-
|
|
3
|
-
Core version 0.42.
|
|
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
|
-
|
|
10
|
-
Core version 0.42.
|
|
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
|
-
|
|
17
|
-
Core version 0.42.
|
|
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
|
-
|
|
24
|
-
Core version 0.42.
|
|
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
|