log-llm-config 1.0.23 → 1.0.24
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/log_config_files.js +1 -1
- package/package.json +1 -1
package/dist/log_config_files.js
CHANGED
|
@@ -2290,7 +2290,7 @@ async function sendConfigFilesBatch(configFiles, hardwareUuid, authKey, hookRequ
|
|
|
2290
2290
|
const signature = createSignature(payload, authKey.key);
|
|
2291
2291
|
const body = { ...payload, signature, key_id: authKey.key_id || '' };
|
|
2292
2292
|
try {
|
|
2293
|
-
const response = (await postStartupPayload(apiUrl, body));
|
|
2293
|
+
const response = (await postStartupPayload(apiUrl, body, 30000));
|
|
2294
2294
|
if (response.status === 'accepted') {
|
|
2295
2295
|
const accepted = typeof response.accepted === 'number' ? response.accepted : chunk.length;
|
|
2296
2296
|
const failedList = Array.isArray(response.failed) ? response.failed : [];
|