Skip to content

Commit

Permalink
Fix error message of RPC-02412. (sofastack#243)
Browse files Browse the repository at this point in the history
  • Loading branch information
glmapper authored and ujjboy committed Aug 4, 2018
1 parent b904f00 commit 1c1b687
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ private SofaRpcException cannotFoundService(String appName, String serviceName)
*/
private SofaRpcException cannotFoundServiceMethod(String appName, String serviceName, String methodName) {
String errorMsg = LogCodes.getLog(
LogCodes.ERROR_PROVIDER_SERVICE_METHOD_CANNOT_FOUND, methodName, serviceName);
LogCodes.ERROR_PROVIDER_SERVICE_METHOD_CANNOT_FOUND, serviceName, methodName);
LOGGER.errorWithApp(appName, errorMsg);
return new SofaRpcException(RpcErrorType.SERVER_NOT_FOUND_INVOKER, errorMsg);
}
Expand Down

0 comments on commit 1c1b687

Please sign in to comment.