未验证 提交 61de3c8d 编写于 作者: XiongLY0's avatar XiongLY0 提交者: GitHub

commit-message: fix issue 505, ob_partition_log_packet_handler.cpp with misspelled word (#567)

上级 10fee2c4
......@@ -307,7 +307,7 @@ int ObPartitionLogPacketHandler::receive_renew_ms_log(LogService* log_service, C
int64_t pos = 0;
if (OB_ISNULL(log_service) || !ctx.is_valid()) {
ret = OB_INVALID_ARGUMENT;
CLOG_LOG(WARN, "invalid arugment", KP(log_service), K(ctx));
CLOG_LOG(WARN, "invalid argument", KP(log_service), K(ctx));
} else if (OB_FAIL(deserialize(ctx, req))) {
CLOG_LOG(WARN, "deserialize ObPushLogReq error", K(ret), K(ctx));
} else {
......@@ -349,7 +349,7 @@ int ObPartitionLogPacketHandler::fake_ack_log(LogService* log_service, Context&
ObFakeAckReq req;
if (OB_ISNULL(log_service) || !ctx.is_valid()) {
ret = OB_INVALID_ARGUMENT;
CLOG_LOG(WARN, "invlaid arugment", K(ret), K(log_service), K(ctx));
CLOG_LOG(WARN, "invlaid argument", K(ret), K(log_service), K(ctx));
} else if (OB_FAIL(deserialize(ctx, req))) {
CLOG_LOG(WARN, "deserialize failed", K(ret), K(ctx));
} else if (OB_FAIL(log_service->fake_ack_log(ctx.server_, req.log_id_, req.proposal_id_))) {
......@@ -365,7 +365,7 @@ int ObPartitionLogPacketHandler::fake_receive_log(LogService* log_service, Conte
ObFakePushLogReq req;
if (OB_ISNULL(log_service) || !ctx.is_valid()) {
ret = OB_INVALID_ARGUMENT;
CLOG_LOG(WARN, "invlaid arugment", K(ret), K(log_service), K(ctx));
CLOG_LOG(WARN, "invlaid argument", K(ret), K(log_service), K(ctx));
} else if (OB_FAIL(deserialize(ctx, req))) {
CLOG_LOG(WARN, "deserialize failed", K(ret), K(ctx));
} else if (OB_FAIL(log_service->fake_receive_log(ctx.server_, req.log_id_, req.proposal_id_))) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册