Skip to content

Commit

Permalink
Fix one typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
Shylock-Hg committed Apr 2, 2020
1 parent b272af3 commit 53ca1bc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/meta/processors/schemaMan/CreateEdgeProcessor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ void CreateEdgeProcessor::process(const cpp2::CreateEdgeReq& req) {
defaultValue = folly::to<std::string>(value->get_timestamp());
break;
default:
LOG(ERROR) << "Unkown type " << static_cast<int>(column.get_type().get_type());
LOG(ERROR) << "Unknown type " << static_cast<int>(column.get_type().get_type());
handleErrorCode(cpp2::ErrorCode::E_INVALID_PARM);
onFinished();
return;
Expand Down
2 changes: 1 addition & 1 deletion src/meta/processors/schemaMan/CreateTagProcessor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ void CreateTagProcessor::process(const cpp2::CreateTagReq& req) {
defaultValue = folly::to<std::string>(value->get_timestamp());
break;
default:
LOG(ERROR) << "Unkown type " << static_cast<int>(column.get_type().get_type());
LOG(ERROR) << "Unknown type " << static_cast<int>(column.get_type().get_type());
handleErrorCode(cpp2::ErrorCode::E_INVALID_PARM);
onFinished();
return;
Expand Down

0 comments on commit 53ca1bc

Please sign in to comment.