Skip to content

Commit 75b5061

Browse files
authored
fix the path in the comment (#31116)
Signed-off-by: kuochunghsu <[email protected]>
1 parent 74fc1c2 commit 75b5061

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

source/common/http/filter_manager.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1189,7 +1189,7 @@ void FilterManager::maybeContinueEncoding(
11891189

11901190
void FilterManager::encodeHeaders(ActiveStreamEncoderFilter* filter, ResponseHeaderMap& headers,
11911191
bool end_stream) {
1192-
// See encodeHeaders() comments in include/envoy/http/filter.h for why the 1xx precondition holds.
1192+
// See encodeHeaders() comments in envoy/http/filter.h for why the 1xx precondition holds.
11931193
ASSERT(!CodeUtility::is1xx(Utility::getResponseStatus(headers)) ||
11941194
Utility::getResponseStatus(headers) == enumToInt(Http::Code::SwitchingProtocols));
11951195
filter_manager_callbacks_.resetIdleTimer();

source/common/init/manager_impl.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ namespace Init {
1414

1515
/**
1616
* Init::ManagerImpl coordinates initialization of one or more "targets." See comments in
17-
* include/envoy/init/manager.h for an overview.
17+
* envoy/init/manager.h for an overview.
1818
*
1919
* When the logging level is set to "debug" or "trace," the log will contain entries for all
2020
* significant events in the initialization flow:

test/common/common/lock_guard_test.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ TEST_F(LockGuardTest, TestTryLockGuard) {
3737
if (lock.tryLock()) {
3838
// This test doesn't work, because a_mutex_ is guarded, and thread
3939
// annotations don't work with TryLockGuard. The macro is defined in
40-
// include/envoy/thread/thread.h.
40+
// envoy/thread/thread.h.
4141
DISABLE_TRYLOCKGUARD_ANNOTATION(EXPECT_EQ(1, ++a_));
4242

4343
// TryLockGuard does functionally work with unguarded variables.

test/common/http/conn_manager_impl_fuzz_test.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -527,7 +527,7 @@ class FuzzStream {
527527
// Similarly, local replies should always contain this.
528528
const auto status = Utility::getResponseStatusOrNullopt(*headers);
529529
// The only 1xx header that may be provided to encodeHeaders() is a 101 upgrade,
530-
// guaranteed by the codec parsers. See include/envoy/http/filter.h.
530+
// guaranteed by the codec parsers. See envoy/http/filter.h.
531531
if (!status.has_value() || (CodeUtility::is1xx(status.value()) &&
532532
status.value() != enumToInt(Http::Code::SwitchingProtocols))) {
533533
headers->setReferenceKey(Headers::get().Status, "200");

0 commit comments

Comments
 (0)