We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When too many lines of progress indication are being printed, scrollback will explode. It looks mostly fine if you're not scrolling back:
but if you make the terminal taller or scroll up, you'll see a problem:
This can drown out valuable output from the build phase or similar.
A simple way to reproduce this is to run colmena apply keys with the following hive.nix, in a terminal less than 20 lines tall:
colmena apply keys
hive.nix
with import <nixpkgs> {}; lib.genAttrs (map (n: "host${toString n}") (lib.range 1 20)) (name: { deployment.targetHost = "dummy.invalid"; boot.isContainer = true; deployment.keys.block-deployment = { keyCommand = ["sleep" "infinity"]; }; })
The text was updated successfully, but these errors were encountered:
This issue has apparently been known upstream in indicatif for a while:
indicatif
console-rs/indicatif#53
Sorry, something went wrong.
No branches or pull requests
When too many lines of progress indication are being printed, scrollback will explode. It looks mostly fine if you're not scrolling back:
but if you make the terminal taller or scroll up, you'll see a problem:
This can drown out valuable output from the build phase or similar.
A simple way to reproduce this is to run
colmena apply keys
with the followinghive.nix
, in a terminal less than 20 lines tall:The text was updated successfully, but these errors were encountered: