Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion mobile/library/common/http/client.cc
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,7 @@ void Client::DirectStreamCallbacks::latchError() {
!resp_code_details.empty()) {
error_msg_details.push_back(absl::StrCat("det: ", std::move(resp_code_details)));
}
// The format of the error message propogated to callbacks is:
// The format of the error message propagated to callbacks is:
// rc: {value}|ec: {value}|rsp_flags: {value}|http: {value}|det: {value}
//
// Where envoy_rc is the HTTP response code from StreamInfo::responseCode().
Expand Down
2 changes: 1 addition & 1 deletion source/common/quic/http_datagram_handler.cc
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ bool HttpDatagramHandler::encodeCapsuleFragment(absl::string_view capsule_fragme
// If a CapsuleParser object fails to parse a capsule fragment, the corresponding stream should
// be reset. Returning false in this method resets the stream.
if (!capsule_parser_.IngestCapsuleFragment(capsule_fragment)) {
ENVOY_LOG(error, fmt::format("Capsule parsing error occured: capsule_fragment = {}",
ENVOY_LOG(error, fmt::format("Capsule parsing error occurred: capsule_fragment = {}",
capsule_fragment));
return false;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ FilterStatus ConnectionManager::ResponseDecoder::messageBegin(MessageMetadataSha
// call so that the header is added after all upstream headers passed, due to messageBegin
// possibly not getting headers in transportBegin.
if (cm.drain_decision_.drainClose(Network::DrainDirection::All)) {
ENVOY_STREAM_LOG(debug, "propogate Drain header for drain close decision", parent_);
ENVOY_STREAM_LOG(debug, "propagate Drain header for drain close decision", parent_);
// TODO(rgs1): should the key value contain something useful (e.g.: minutes til drain is
// over)?
metadata->responseHeaders().addReferenceKey(Headers::get().Drain, "true");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ WriteFilterStatus HttpCapsuleFilter::onWrite(Network::UdpRecvData& data) {
for (const Buffer::RawSlice& slice : data.buffer_->getRawSlices()) {
absl::string_view mem_slice(reinterpret_cast<const char*>(slice.mem_), slice.len_);
if (!capsule_parser_.IngestCapsuleFragment(mem_slice)) {
ENVOY_LOG(error, "Capsule ingestion error occured: slice length = {}", slice.len_);
ENVOY_LOG(error, "Capsule ingestion error occurred: slice length = {}", slice.len_);
break;
}
}
Expand Down
2 changes: 1 addition & 1 deletion source/extensions/upstreams/http/udp/upstream_request.cc
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ void UdpUpstream::encodeData(Buffer::Instance& data, bool end_stream) {
for (const Buffer::RawSlice& slice : data.getRawSlices()) {
absl::string_view mem_slice(static_cast<const char*>(slice.mem_), slice.len_);
if (!capsule_parser_.IngestCapsuleFragment(mem_slice)) {
ENVOY_LOG_MISC(error, "Capsule ingestion error occured: slice = {}", mem_slice);
ENVOY_LOG_MISC(error, "Capsule ingestion error occurred: slice = {}", mem_slice);
break;
}
}
Expand Down
Loading