empiredan opened a new pull request, #1158: URL: https://github.com/apache/incubator-pegasus/pull/1158
This PR is to fix https://github.com/apache/incubator-pegasus/issues/1157. This issue must be caused by invalid logging format as follows: ```C++ dassert(false, "gpid({}) on node({}) is not exist on meta server, administrator " "should check consistency of meta data", rep.pid, request.node.to_string()); ``` For `{}` in logging, `dassert_f` should be used instead of `dassert`. This PR has also replaced all logging format with `*_f` for meta server_state, including: - dassert -> dassert_f - derror -> derror_f - dwarn -> dwarn_f - ddebug -> ddebug_f - dinfo -> dinfo_f -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
