Skip to content
Merged
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
1 change: 1 addition & 0 deletions docs/root/intro/version_history.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ Version history
* listeners: added :ref:`continue_on_listener_filters_timeout <envoy_api_field_Listener.continue_on_listener_filters_timeout>` to configure whether a listener will still create a connection when listener filters time out.
* listeners: added :ref:`HTTP inspector listener filter <config_listener_filters_http_inspector>`.
* lua: extended `httpCall()` and `respond()` APIs to accept headers with entry values that can be a string or table of strings.
* performance: new buffer implementation enabled by default (to disable add "--use-libevent-buffers 1" to the command-line arguments when starting Envoy).
* router: added :ref:`rq_retry_skipped_request_not_complete <config_http_filters_router_stats>` counter stat to router stats.
* router check tool: add coverage reporting & enforcement.
* router check tool: add comprehensive coverage reporting.
Expand Down
2 changes: 1 addition & 1 deletion source/server/options_impl.cc
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ OptionsImpl::OptionsImpl(int argc, const char* const* argv,

TCLAP::ValueArg<bool> use_libevent_buffer("", "use-libevent-buffers",
"Use the original libevent buffer implementation",
false, true, "bool", cmd);
false, false, "bool", cmd);

cmd.setExceptionHandling(false);
try {
Expand Down
2 changes: 1 addition & 1 deletion test/server/options_impl_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ TEST_F(OptionsImplTest, All) {
EXPECT_EQ(std::chrono::seconds(60), options->drainTime());
EXPECT_EQ(std::chrono::seconds(90), options->parentShutdownTime());
EXPECT_EQ(true, options->hotRestartDisabled());
EXPECT_EQ(true, options->libeventBufferEnabled());
EXPECT_EQ(false, options->libeventBufferEnabled());
EXPECT_EQ(true, options->cpusetThreadsEnabled());

options = createOptionsImpl("envoy --mode init_only");
Expand Down