it-projects-llc / saas-addons

Odoo modules for SaaS Businesses. Sale and manage Odoo databases.
https://saas.it-projects.info
147 stars 173 forks source link

upstream request timeout #115

Closed herawais closed 4 years ago

herawais commented 4 years ago

Sometimes the site work fine but sometimes this error upstream request timeout How to increase the timeout ?

herawais commented 4 years ago

I tried to increase the connect_timeout parameter in envoy.yaml but not worked.

herawais commented 4 years ago

I solved it by increasing timeout

              routes:
              - match: {prefix: /longpolling/}
                route: {
                  cluster: target_odoo_longpolling,
                  # odoo keeps longpolling requests for 50s max
                  timeout: 55s
                }
              - match: {prefix: /}
                route: {
                    cluster: target_odoo,
                    **timeout: 550s**
                }