Skip to content

Commit 3b413bd

Browse files
committed
Fix spelling error.
1 parent 4709cee commit 3b413bd

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

lib/BinaryProtoLookupService.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ Future<Result, boost::optional<SchemaInfo>> BinaryProtoLookupService::getSchema(
170170
return promise->getFuture();
171171
}
172172

173-
void BinaryProtoLookupService::sendGetSchemaRequest(const std::string& topiName, Result result,
173+
void BinaryProtoLookupService::sendGetSchemaRequest(const std::string& topicName, Result result,
174174
const ClientConnectionWeakPtr& clientCnx,
175175
GetSchemaPromisePtr promise) {
176176
if (result != ResultOk) {
@@ -180,9 +180,9 @@ void BinaryProtoLookupService::sendGetSchemaRequest(const std::string& topiName,
180180

181181
ClientConnectionPtr conn = clientCnx.lock();
182182
uint64_t requestId = newRequestId();
183-
LOG_DEBUG("sendGetSchemaRequest. requestId: " << requestId << " topicName: " << topiName);
183+
LOG_DEBUG("sendGetSchemaRequest. requestId: " << requestId << " topicName: " << topicName);
184184

185-
conn->newGetSchema(topiName, requestId)
185+
conn->newGetSchema(topicName, requestId)
186186
.addListener([promise](Result result, boost::optional<SchemaInfo> schemaInfo) {
187187
if (result != ResultOk) {
188188
promise->setFailed(result);

0 commit comments

Comments
 (0)