-
Notifications
You must be signed in to change notification settings - Fork 32
test pr #165
New issue
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
test pr #165
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -27,6 +27,7 @@ def _warn_about_expired_token(lease_name: str, selector: str) -> None: | |||||
| click.echo(click.style(f"To reconnect: JMP_LEASE={lease_name} jmp shell", fg="cyan")) | ||||||
|
|
||||||
|
|
||||||
| # test | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Remove leftover test comment. This Proposed fix-# test
async def _monitor_token_expiry(config, cancel_scope) -> None:📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||
| async def _monitor_token_expiry(config, cancel_scope) -> None: | ||||||
| """Monitor token expiry and warn user.""" | ||||||
| token = getattr(config, "token", None) | ||||||
|
|
||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Using
caton binary QCOW2 files will flood CI logs with binary data.QCOW2 files are binary disk images (hundreds of MBs). Running
caton them outputs raw binary to the CI logs, providing no useful diagnostic information and potentially causing log storage/display issues.If the intent is to verify the downloaded files, use
qemu-img infoorfileinstead.🔧 Suggested fix using qemu-img info
done ls -lsh python/packages/jumpstarter-driver-qemu/images for file in python/packages/jumpstarter-driver-qemu/images/*.qcow2; do - cat $file + qemu-img info "$file" done📝 Committable suggestion
🤖 Prompt for AI Agents