We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96fb447 commit e608575Copy full SHA for e608575
exporters/otlp/src/otlp_grpc_exporter.cc
@@ -105,7 +105,7 @@ sdk::common::ExportResult OtlpGrpcExporter::Export(
105
google::protobuf::ArenaOptions arena_options;
106
// It's easy to allocate datas larger than 1024 when we populate basic resource and attributes
107
arena_options.initial_block_size = 1024;
108
- // When in batch mode, it's easy to export a large number of spans at once, we can alloc a lager
+ // When in batch mode, it's easy to export a large number of spans at once, we can alloc a larger
109
// block to reduce memory fragments.
110
arena_options.max_block_size = 65536;
111
std::unique_ptr<google::protobuf::Arena> arena{new google::protobuf::Arena{arena_options}};
0 commit comments