From cabc6aebb11ffbe6e495095097a410b841778574 Mon Sep 17 00:00:00 2001 From: checktheroads Date: Sat, 11 Apr 2020 16:47:58 -0700 Subject: [PATCH] increase default request_timeout due to long traceroutes --- hyperglass/configuration/models/params.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/hyperglass/configuration/models/params.py b/hyperglass/configuration/models/params.py index 3a8810b..15f5bd2 100644 --- a/hyperglass/configuration/models/params.py +++ b/hyperglass/configuration/models/params.py @@ -67,6 +67,7 @@ class Params(HyperglassModel): "lg", "peer", "peering", + "ip", "ipv4", "ipv6", "transit", @@ -76,12 +77,13 @@ class Params(HyperglassModel): "routing", "network", "isp", + "internet service provider", ], title="Site Keywords", description='Keywords pertaining to your hyperglass site. This field is used to generate `` HTML tags, which helps tremendously with SEO.', ) request_timeout: StrictInt = Field( - 30, + 65, title="Request Timeout", description="Global timeout in seconds for all requests. The frontend application (UI) uses this field's exact value when submitting queries. The backend application uses this field's value, minus one second, for its own timeout handling. This is to ensure a contextual timeout error is presented to the end user in the event of a backend application timeout.", )