Skip to content

Commit

Permalink
add last_steal_from in the task trace log
Browse files Browse the repository at this point in the history
  • Loading branch information
kuron99 committed Oct 25, 2024
1 parent 775e23f commit 44ad0c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jogasaki/scheduler/flat_task.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ bool flat_task::execute(tateyama::task_scheduler::context& ctx) {
}
VLOG_LP(log_trace) << "task begin " << *this << " job_id:" << utils::hex(req_context_->job()->id())
<< " kind:" << kind_ << " sticky:" << sticky_ << " worker:" << ctx.index()
<< " stolen:" << ctx.task_is_stolen();
<< " stolen:" << ctx.task_is_stolen() << " last_steal_from:" << ctx.last_steal_from();
bool ret = false;
switch(kind_) {
using kind = flat_task_kind;
Expand Down

0 comments on commit 44ad0c0

Please sign in to comment.