Skip to content

Commit

Permalink
mxqdump: Show disabled servers
Browse files Browse the repository at this point in the history
  • Loading branch information
donald committed Apr 13, 2020
1 parent a3f6872 commit 6a3b872
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion mxqdump.c
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ static int print_group(struct mxq_group *g)
" idle_sec=%lu"
" job_command=%s"
" group_name=%s"
" disabled_servers=%s"
"\n",
g->user_name,
g->user_uid,
Expand Down Expand Up @@ -163,7 +164,8 @@ static int print_group(struct mxq_group *g)
g->stats_run_sec,
g->stats_idle_sec,
g->job_command,
g->group_name);
g->group_name,
g->group_disabled_servers);
}

static int print_job(struct mxq_group *g, struct mxq_job *j)
Expand Down

0 comments on commit 6a3b872

Please sign in to comment.