Skip to content

Commit

Permalink
director: If user move times out, log the state it was in at the time.
Browse files Browse the repository at this point in the history
  • Loading branch information
sirainen committed Oct 25, 2016
1 parent 825dc91 commit 8ca411e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/director/director.c
Expand Up @@ -929,7 +929,9 @@ static void director_user_move_timeout(struct user *user)

if (log_throttle_accept(user_move_throttle)) {
i_error("Finishing user %u move timed out, "
"its state may now be inconsistent", user->username_hash);
"its state may now be inconsistent (state=%s)",
user->username_hash,
user_kill_state_names[user->kill_state]);
}

/* FIXME: shouldn't use global director, but for now there's no easy
Expand Down

0 comments on commit 8ca411e

Please sign in to comment.