Skip to content
Snippets Groups Projects
Commit cb0d2fd2 authored by Morris Jette's avatar Morris Jette
Browse files

burst_buffer/cray: Log recovered buffer data on slurmctld restart

parent 34e24467
No related branches found
No related tags found
No related merge requests found
...@@ -852,6 +852,10 @@ static void _recover_bb_state(void) ...@@ -852,6 +852,10 @@ static void _recover_bb_state(void)
bb_alloc = bb_find_name_rec(name, user_id, &bb_state); bb_alloc = bb_find_name_rec(name, user_id, &bb_state);
} }
if (bb_alloc) { if (bb_alloc) {
if (bb_state.bb_config.debug_flag) {
info("Recovered burst buffer %s from user %u",
bb_alloc->name, bb_alloc->user_id);
}
xfree(bb_alloc->account); xfree(bb_alloc->account);
bb_alloc->account = account; bb_alloc->account = account;
account = NULL; account = NULL;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment