We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f758e9d commit 943a659Copy full SHA for 943a659
platform/fabricx/core/vault/queryservice/query.go
@@ -76,7 +76,10 @@ func (s *RemoteQueryService) query(m map[driver.Namespace][]driver.PKey) (map[dr
76
return nil, err
77
}
78
79
- ctx, cancel := context.WithTimeout(context.Background(), s.config.QueryTimeout)
+ // ctx, cancel := context.WithTimeout(context.Background(), s.config.QueryTimeout)
80
+ // TODO remove this line below
81
+ ctx, cancel := context.WithTimeout(context.Background(),20*time.Second)
82
+
83
defer cancel()
84
85
now := time.Now()
0 commit comments