File tree 2 files changed +8
-1
lines changed
2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " iknow-entity-browser" ,
3
- "version" : " 1.1.1 " ,
3
+ "version" : " 1.1.2 " ,
4
4
"description" : " Visualizer for iKnow entities" ,
5
5
"main" : " gulpfile.babel.js" ,
6
6
"scripts" : {
Original file line number Diff line number Diff line change @@ -113,6 +113,13 @@ XData UrlMap [ XMLNamespace = "http://www.intersystems.com/urlmap" ]
113
113
</Routes >
114
114
}
115
115
116
+ /// Extend the timeout for the long queries up to 2 hours
117
+ ClassMethod OnPreDispatch (pUrl As %String , pMethod As %String , ByRef pContinue As %Boolean ) As %Status
118
+ {
119
+ set %response .Timeout = 60 * 60 * 2 // 2 hours at max
120
+ return ##class (%iKnow.REST.Base ).OnPreDispatch (pUrl , pMethod , pContinue )
121
+ }
122
+
116
123
/// <example language="swagger">
117
124
/// summary: |
118
125
/// Retrieves the graph representation of all entities similar to a seed string
You can’t perform that action at this time.
0 commit comments