Skip to content

Commit

Permalink
fix: the join point name of on_rpc_create_response (#984)
Browse files Browse the repository at this point in the history
  • Loading branch information
empiredan authored Dec 13, 2021
1 parent 455822b commit 58e0627
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/runtime/task/task_spec.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ task_spec::task_spec(int code,
on_rpc_task_dropped((std::string(name) + std::string(".dropped")).c_str()),
on_rpc_reply((std::string(name) + std::string(".rpc.reply")).c_str()),
on_rpc_response_enqueue((std::string(name) + std::string(".rpc.response.enqueue")).c_str()),
on_rpc_create_response((std::string(name) + std::string("rpc.create.response")).c_str())
on_rpc_create_response((std::string(name) + std::string(".rpc.response.create")).c_str())
{
dassert(strlen(name) < DSN_MAX_TASK_CODE_NAME_LENGTH,
"task code name '%s' is too long: length must be smaller than "
Expand Down

0 comments on commit 58e0627

Please sign in to comment.