Skip to content

Commit 44528a8

Browse files
committed
fix(QueryEditor): make client request timeout 9 min
1 parent deef610 commit 44528a8

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/services/api.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,10 @@ export class YdbEmbeddedAPI extends AxiosWrapper {
185185
timeout: 600000,
186186
},
187187
null,
188-
{concurrentId},
188+
{
189+
concurrentId,
190+
timeout: 9 * 60 * 1000,
191+
},
189192
);
190193
}
191194
getExplainQuery(query, database) {

0 commit comments

Comments
 (0)