1

on runnning envoy proxy using this command envoy -c envoy-demo.yaml

i got this error

[critical][main] [external/envoy/source/server/server.cc:113] error initializing configuration 'envoy-demo.yaml': Field 'connect_timeout' is missing in: name: "service_envoyproxy_io"

http://localhost:10000/ is not opening in browser

ankit singh
  • 286
  • 2
  • 9

1 Answers1

4

added connect_timeout under clusters in envoy-demo.yaml

e.g.

  clusters:
  - name: service_envoyproxy_io
    type: LOGICAL_DNS
    connect_timeout: 5s
ankit singh
  • 286
  • 2
  • 9