chore(kiloclaw): increase pairing exec timeouts and run channels concurrently#422
Merged
pandemicsyn merged 1 commit intomainfrom Feb 20, 2026
Merged
Conversation
…urrently Increase Fly exec timeouts (default 10→60s, pairing list 20→60s, approve 15→60s) and refactor openclaw-pairing-list.js to run channel queries concurrently via Promise.allSettled instead of sequential execFileSync, with a per-channel timeout of 45s.
St0rmz1
approved these changes
Feb 20, 2026
Contributor
Code Review SummaryStatus: No Issues Found | Recommendation: Merge NotesClean refactor that improves the pairing list script in two key ways:
The default timeout change in Files Reviewed (3 files)
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
execCommandtimeout from 10s → 60s, pairing list from 20s → 60s, and pairing approve from 15s → 60s to avoid premature timeouts on slow Fly machines.openclaw-pairing-list.jsfrom sequential synchronousexecFileSynccalls to concurrent async execution viaPromise.allSettled, with a per-channel timeout of 45s. This makes the script faster when multiple channels are configured and more resilient to individual channel failures.