1
0
mirror of https://github.com/checktheroads/hyperglass synced 2024-05-11 05:55:08 +00:00

increase default request_timeout due to long traceroutes

This commit is contained in:
checktheroads
2020-04-11 16:47:58 -07:00
parent ddd8d6b737
commit cabc6aebb1

View File

@@ -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 `<meta name="keywords"/>` 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.",
)