Skip to content

Commit 906a039

Browse files
committed
job-exec: remove stray debug fprintf
Problem: A debug fprintf() was inadvertently added to the job-exec module in a recent commit. Remove the debug fprintf().
1 parent 29a9169 commit 906a039

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/modules/job-exec/exec.c

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -202,10 +202,8 @@ static void barrier_timer_start (struct exec_ctx *ctx)
202202
{
203203
/* Only ever create one barrier timer (for the first shell barrier)
204204
*/
205-
if (ctx->barrier_completion_count == 0) {
206-
fprintf (stderr, "starting barrier timer\n");
205+
if (ctx->barrier_completion_count == 0)
207206
flux_watcher_start (ctx->shell_barrier_timer);
208-
}
209207
}
210208

211209

0 commit comments

Comments
 (0)