ydb-embedded-ui 1.8.2 → 1.8.3
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +7 -0
- package/dist/services/api.js +3 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,12 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [1.8.3](https://github.com/ydb-platform/ydb-embedded-ui/compare/v1.8.2...v1.8.3) (2022-07-08)
|
4
|
+
|
5
|
+
|
6
|
+
### Bug Fixes
|
7
|
+
|
8
|
+
* timeout 600 sec for requests /viewer/json/query ([cf65122](https://github.com/ydb-platform/ydb-embedded-ui/commit/cf651221f866e5f56ecf6c900b3778dedc31eb95))
|
9
|
+
|
3
10
|
## [1.8.2](https://github.com/ydb-platform/ydb-embedded-ui/compare/v1.8.1...v1.8.2) (2022-07-07)
|
4
11
|
|
5
12
|
|
package/dist/services/api.js
CHANGED
@@ -153,6 +153,7 @@ export class YdbEmbeddedAPI extends AxiosWrapper {
|
|
153
153
|
database,
|
154
154
|
action,
|
155
155
|
stats,
|
156
|
+
timeout: 600000,
|
156
157
|
});
|
157
158
|
}
|
158
159
|
getExplainQuery(query, database) {
|
@@ -160,6 +161,7 @@ export class YdbEmbeddedAPI extends AxiosWrapper {
|
|
160
161
|
query,
|
161
162
|
database,
|
162
163
|
action: 'explain',
|
164
|
+
timeout: 600000,
|
163
165
|
});
|
164
166
|
}
|
165
167
|
getExplainQueryAst(query, database) {
|
@@ -167,6 +169,7 @@ export class YdbEmbeddedAPI extends AxiosWrapper {
|
|
167
169
|
query,
|
168
170
|
database,
|
169
171
|
action: 'explain-ast',
|
172
|
+
timeout: 600000,
|
170
173
|
});
|
171
174
|
}
|
172
175
|
getHotKeys(path, enableSampling) {
|