Skip to content

Commit

Permalink
disable new idle timeout handling
Browse files Browse the repository at this point in the history
Signed-off-by: Snow Pettersen <snowp@lyft.com>
  • Loading branch information
snowp committed Mar 16, 2022
1 parent 7da7d7d commit 4dbe81a
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions library/common/engine.cc
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,11 @@ envoy_status_t Engine::main(const std::string config, const std::string log_leve
server_ = main_common->server();
event_dispatcher_ = &server_->dispatcher();

// The change guarded by this flag breaks our idle timeout handling, so disable this for now
// until we can fix it.
server_->runtime().mergeValues(
{{"envoy.reloadable_features.override_request_timeout_by_gateway_timeout", "false"}});

cv_.notifyAll();
} catch (const Envoy::NoServingException& e) {
PANIC(e.what());
Expand Down

0 comments on commit 4dbe81a

Please sign in to comment.