Merge branch 'master' into feat/rpc-fetcher

* decode_filter changes
This commit is contained in:
2023-01-19 11:39:12 +03:00
10 changed files with 49 additions and 65 deletions

View File

@@ -26,7 +26,7 @@ type Graphql struct {
func NewGraphqlFetcher(o GraphqlOpts) Fetch {
return &Graphql{
httpClient: &http.Client{
Timeout: time.Second * 2,
Timeout: time.Second * 5,
},
graphqlEndpoint: o.GraphqlEndpoint,
}