Skip to content

Commit

Permalink
don't touch request->async->listen for fake requests
Browse files Browse the repository at this point in the history
  • Loading branch information
alandekok committed Apr 14, 2020
1 parent ef2131a commit ee5267e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/io/worker.c
Original file line number Diff line number Diff line change
Expand Up @@ -928,7 +928,7 @@ static void worker_run_request(fr_worker_t *worker, fr_time_t start)
/*
* Don't reply to internally generated request.
*/
if (request->parent) break;
if (request->parent || request->async->fake) break;

size = request->async->listen->app_io->default_reply_size;
if (!size) size = request->async->listen->app_io->default_message_size;
Expand Down

0 comments on commit ee5267e

Please sign in to comment.