ai-lens 0.8.45 → 0.8.46
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/.commithash +1 -1
- package/client/sender.js +1 -1
- package/package.json +1 -1
package/.commithash
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
8f21797
|
package/client/sender.js
CHANGED
|
@@ -60,7 +60,7 @@ export function rotateLog(logPath = LOG_PATH, maxAgeDays = LOG_MAX_AGE_DAYS) {
|
|
|
60
60
|
}
|
|
61
61
|
|
|
62
62
|
export const MAX_QUEUE_SIZE = 10_000;
|
|
63
|
-
export const MAX_CHUNK_BYTES =
|
|
63
|
+
export const MAX_CHUNK_BYTES = 50 * 1024; // 50 KB per POST — small chunks avoid ECONNRESET on corporate proxies/TLS inspection
|
|
64
64
|
export const LOCK_MAX_AGE_MS = 5 * 60 * 1000; // 5 minutes
|
|
65
65
|
|
|
66
66
|
// =============================================================================
|