Skip to content

Commit

Permalink
Update istio 1.19.0
Browse files Browse the repository at this point in the history
  • Loading branch information
c00887447 committed Sep 18, 2024
1 parent 8cb2498 commit 872306f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/meta_protocol_proxy/filters/router/router_impl.cc
Original file line number Diff line number Diff line change
Expand Up @@ -408,11 +408,11 @@ void Router::emitLogEntry(const MetadataSharedPtr& request_metadata,
const auto& responseHeaders = responseMetadataImpl->getResponseHeaders();
for (const auto& access_log : decoder_filter_callbacks_->accessLogs()) {
access_log->log(&requestHeaders, &responseHeaders, nullptr,
decoder_filter_callbacks_->streamInfo(), 0);
decoder_filter_callbacks_->streamInfo(), Envoy::AccessLog::AccessLogType::NotSet);
}
} else {
for (const auto& access_log : decoder_filter_callbacks_->accessLogs()) {
access_log->log(&requestHeaders, nullptr, nullptr, decoder_filter_callbacks_->streamInfo(), 0);
access_log->log(&requestHeaders, nullptr, nullptr, decoder_filter_callbacks_->streamInfo(), Envoy::AccessLog::AccessLogType::NotSet);
}
}
}
Expand Down

0 comments on commit 872306f

Please sign in to comment.