fix: avoid scaletest prompts without interactive input - #27905
Open
ethanndickson wants to merge 1 commit into
Open
fix: avoid scaletest prompts without interactive input#27905ethanndickson wants to merge 1 commit into
ethanndickson wants to merge 1 commit into
Conversation
ethanndickson
force-pushed
the
scaletest-runner-6kzn
branch
from
August 6, 2026 03:32
b206631 to
18a9712
Compare
ethanndickson
marked this pull request as ready for review
August 6, 2026 03:34
Contributor
Documentation CheckUpdates Needed
Automated review via Coder Agents |
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.
Relates to PRODUCT-534
A user reported that the scaletest runner startup script failed when it invoked
coder exp scaletest create-workspaces:The runner has no interactive stdin, but template parameter resolution tried to open a selector. Bubble Tea then failed whilst creating its Linux
cancelreader, so the unresolved template parameter was hidden by this confusing epoll error.This PR fixes that error message for non-interactive scaletest commands. Instead of trying to prompt, the CLI now identifies the unresolved parameter and tells the user to pass
--use-parameter-defaultsor set it with--parameter.The scaletest commands now expose
--use-parameter-defaults, and the scaletest runner passes it explicitly when creating workspaces. This lets the runner use declared defaults without attempting to open an interactive selector.