Skip to content

node: 'graphman copy status': Use bigger columns for next and target #5956

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions node/src/manager/commands/copy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -336,10 +336,10 @@ pub fn status(pools: HashMap<Shard, ConnectionPool>, dst: &DeploymentSearch) ->
println!();

println!(
"{:^30} | {:^8} | {:^8} | {:^8} | {:^8}",
"{:^30} | {:^10} | {:^10} | {:^8} | {:^10}",
"entity type", "next", "target", "batch", "duration"
);
println!("{:-<74}", "-");
println!("{:-<80}", "-");
for table in tables {
let status = match &table.finished_at {
// table finished
Expand All @@ -352,7 +352,7 @@ pub fn status(pools: HashMap<Shard, ConnectionPool>, dst: &DeploymentSearch) ->
None => ".",
};
println!(
"{} {:<28} | {:>8} | {:>8} | {:>8} | {:>8}",
"{} {:<28} | {:>10} | {:>10} | {:>8} | {:>10}",
status,
table.entity_type,
table.next_vid,
Expand Down
Loading