echoclaw-relay-agent 0.17.0 → 0.17.2
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/cli.js +2 -2
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -276,8 +276,8 @@ async function runSetup(code, relay, bridgePort) {
|
|
|
276
276
|
// Step 1: Pair
|
|
277
277
|
const pairPromise = new Promise((resolve, reject) => {
|
|
278
278
|
const timeout = setTimeout(() => {
|
|
279
|
-
reject(new Error('Pairing timed out after
|
|
280
|
-
}, 60000);
|
|
279
|
+
reject(new Error('Pairing timed out after 10 minutes. Check your code and network.'));
|
|
280
|
+
}, 10 * 60000);
|
|
281
281
|
agent.on('paired', (info) => {
|
|
282
282
|
clearTimeout(timeout);
|
|
283
283
|
resolve(info);
|
package/package.json
CHANGED